2005-11-29 20:29:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2005-11-29 20:29:45 +00:00
|
|
|
|
2006-04-18 15:21:42 +00:00
|
|
|
#define PANGO_ENABLE_BACKEND
|
|
|
|
#define PANGO_ENABLE_ENGINE
|
|
|
|
|
2005-11-29 20:29:45 +00:00
|
|
|
#include "gfxPlatformGtk.h"
|
2013-06-20 21:32:04 +00:00
|
|
|
#include "prenv.h"
|
2005-11-29 20:29:45 +00:00
|
|
|
|
2009-09-09 15:35:08 +00:00
|
|
|
#include "nsUnicharUtils.h"
|
2012-03-09 03:38:01 +00:00
|
|
|
#include "nsUnicodeProperties.h"
|
2014-02-09 08:04:38 +00:00
|
|
|
#include "gfx2DGlue.h"
|
2007-01-30 08:20:29 +00:00
|
|
|
#include "gfxFontconfigUtils.h"
|
2007-04-15 22:22:58 +00:00
|
|
|
#include "gfxPangoFonts.h"
|
2008-07-13 21:40:16 +00:00
|
|
|
#include "gfxContext.h"
|
2008-12-05 23:19:27 +00:00
|
|
|
#include "gfxUserFontSet.h"
|
2012-05-16 22:30:10 +00:00
|
|
|
#include "gfxFT2FontBase.h"
|
2006-01-10 20:26:40 +00:00
|
|
|
|
2012-01-26 00:54:31 +00:00
|
|
|
#include "mozilla/gfx/2D.h"
|
|
|
|
|
2007-01-27 02:14:19 +00:00
|
|
|
#include "cairo.h"
|
2005-11-29 20:29:45 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "gfxImageSurface.h"
|
2008-08-06 20:48:55 +00:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
#include <gdk/gdkx.h>
|
2005-11-29 20:29:45 +00:00
|
|
|
#include "gfxXlibSurface.h"
|
2008-08-19 03:22:42 +00:00
|
|
|
#include "cairo-xlib.h"
|
2012-04-18 14:27:32 +00:00
|
|
|
#include "mozilla/Preferences.h"
|
2009-04-20 16:36:37 +00:00
|
|
|
|
|
|
|
/* Undefine the Status from Xlib since it will conflict with system headers on OSX */
|
|
|
|
#if defined(__APPLE__) && defined(Status)
|
|
|
|
#undef Status
|
|
|
|
#endif
|
|
|
|
|
2008-08-06 20:48:55 +00:00
|
|
|
#endif /* MOZ_X11 */
|
2005-11-29 20:29:45 +00:00
|
|
|
|
2006-01-10 20:26:40 +00:00
|
|
|
#include <fontconfig/fontconfig.h>
|
2006-11-21 06:31:04 +00:00
|
|
|
|
2007-03-02 22:41:06 +00:00
|
|
|
#include "nsMathUtils.h"
|
2006-04-18 15:21:42 +00:00
|
|
|
|
2008-11-09 23:39:41 +00:00
|
|
|
#define GDK_PIXMAP_SIZE_MAX 32767
|
|
|
|
|
2012-01-26 00:54:31 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::gfx;
|
2012-03-09 03:10:05 +00:00
|
|
|
using namespace mozilla::unicode;
|
2012-01-26 00:54:31 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
gfxFontconfigUtils *gfxPlatformGtk::sFontconfigUtils = nullptr;
|
2006-01-10 20:26:40 +00:00
|
|
|
|
2008-08-19 03:22:42 +00:00
|
|
|
static cairo_user_data_key_t cairo_gdk_drawable_key;
|
2007-11-27 00:22:39 +00:00
|
|
|
|
2012-04-18 14:27:32 +00:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
bool gfxPlatformGtk::sUseXRender = true;
|
|
|
|
#endif
|
|
|
|
|
2005-11-29 20:29:45 +00:00
|
|
|
gfxPlatformGtk::gfxPlatformGtk()
|
|
|
|
{
|
2007-01-30 08:20:29 +00:00
|
|
|
if (!sFontconfigUtils)
|
|
|
|
sFontconfigUtils = gfxFontconfigUtils::GetFontconfigUtils();
|
2012-04-18 14:27:32 +00:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
sUseXRender = mozilla::Preferences::GetBool("gfx.xrender.enabled");
|
|
|
|
#endif
|
2007-10-06 07:26:13 +00:00
|
|
|
|
2014-01-10 19:06:16 +00:00
|
|
|
uint32_t canvasMask = BackendTypeBit(BackendType::CAIRO) | BackendTypeBit(BackendType::SKIA);
|
|
|
|
uint32_t contentMask = BackendTypeBit(BackendType::CAIRO) | BackendTypeBit(BackendType::SKIA);
|
|
|
|
InitBackendPrefs(canvasMask, BackendType::CAIRO,
|
|
|
|
contentMask, BackendType::CAIRO);
|
2005-11-29 20:29:45 +00:00
|
|
|
}
|
|
|
|
|
2007-03-19 23:16:15 +00:00
|
|
|
gfxPlatformGtk::~gfxPlatformGtk()
|
|
|
|
{
|
|
|
|
gfxFontconfigUtils::Shutdown();
|
2012-07-30 14:20:58 +00:00
|
|
|
sFontconfigUtils = nullptr;
|
2007-04-15 22:22:58 +00:00
|
|
|
|
2008-09-27 00:21:55 +00:00
|
|
|
gfxPangoFontGroup::Shutdown();
|
2007-03-19 23:16:15 +00:00
|
|
|
}
|
|
|
|
|
2006-03-25 00:34:48 +00:00
|
|
|
already_AddRefed<gfxASurface>
|
2014-02-09 08:04:38 +00:00
|
|
|
gfxPlatformGtk::CreateOffscreenSurface(const IntSize& size,
|
2013-09-24 20:45:13 +00:00
|
|
|
gfxContentType contentType)
|
2005-11-29 20:29:45 +00:00
|
|
|
{
|
2010-11-19 16:56:05 +00:00
|
|
|
nsRefPtr<gfxASurface> newSurface;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool needsClear = true;
|
2013-09-24 20:45:13 +00:00
|
|
|
gfxImageFormat imageFormat = OptimalFormatForContent(contentType);
|
2008-08-06 20:48:55 +00:00
|
|
|
#ifdef MOZ_X11
|
2006-02-23 00:45:55 +00:00
|
|
|
// XXX we really need a different interface here, something that passes
|
|
|
|
// in more context, including the display and/or target surface type that
|
|
|
|
// we should try to match
|
2010-07-02 03:55:24 +00:00
|
|
|
GdkScreen *gdkScreen = gdk_screen_get_default();
|
|
|
|
if (gdkScreen) {
|
2012-09-17 03:23:00 +00:00
|
|
|
if (UseXRender()) {
|
2010-09-24 01:00:06 +00:00
|
|
|
Screen *screen = gdk_x11_screen_get_xscreen(gdkScreen);
|
|
|
|
XRenderPictFormat* xrenderFormat =
|
|
|
|
gfxXlibSurface::FindRenderFormat(DisplayOfScreen(screen),
|
|
|
|
imageFormat);
|
|
|
|
|
|
|
|
if (xrenderFormat) {
|
2014-02-09 08:04:38 +00:00
|
|
|
newSurface = gfxXlibSurface::Create(screen, xrenderFormat,
|
|
|
|
ThebesIntSize(size));
|
2010-09-24 01:00:06 +00:00
|
|
|
}
|
2012-09-17 03:23:00 +00:00
|
|
|
} else {
|
|
|
|
// We're not going to use XRender, so we don't need to
|
|
|
|
// search for a render format
|
2014-02-09 08:04:38 +00:00
|
|
|
newSurface = new gfxImageSurface(ThebesIntSize(size), imageFormat);
|
2012-09-17 03:23:00 +00:00
|
|
|
// The gfxImageSurface ctor zeroes this for us, no need to
|
|
|
|
// waste time clearing again
|
|
|
|
needsClear = false;
|
2006-03-22 01:15:23 +00:00
|
|
|
}
|
2008-09-30 17:53:38 +00:00
|
|
|
}
|
2008-08-06 20:48:55 +00:00
|
|
|
#endif
|
2005-11-29 20:29:45 +00:00
|
|
|
|
2008-11-09 23:39:41 +00:00
|
|
|
if (!newSurface) {
|
|
|
|
// We couldn't create a native surface for whatever reason;
|
2010-07-02 03:55:24 +00:00
|
|
|
// e.g., no display, no RENDER, bad size, etc.
|
2008-11-09 23:39:41 +00:00
|
|
|
// Fall back to image surface for the data.
|
2014-02-09 08:04:38 +00:00
|
|
|
newSurface = new gfxImageSurface(ThebesIntSize(size), imageFormat);
|
2008-11-09 23:39:41 +00:00
|
|
|
}
|
|
|
|
|
2010-11-19 16:56:05 +00:00
|
|
|
if (newSurface->CairoStatus()) {
|
2012-07-30 14:20:58 +00:00
|
|
|
newSurface = nullptr; // surface isn't valid for some reason
|
2010-11-19 16:56:05 +00:00
|
|
|
}
|
|
|
|
|
2010-09-24 01:00:06 +00:00
|
|
|
if (newSurface && needsClear) {
|
2008-07-13 21:40:16 +00:00
|
|
|
gfxContext tmpCtx(newSurface);
|
|
|
|
tmpCtx.SetOperator(gfxContext::OPERATOR_CLEAR);
|
|
|
|
tmpCtx.Paint();
|
|
|
|
}
|
|
|
|
|
2007-11-27 01:40:03 +00:00
|
|
|
return newSurface.forget();
|
2005-11-29 20:29:45 +00:00
|
|
|
}
|
|
|
|
|
2006-01-10 20:26:40 +00:00
|
|
|
nsresult
|
2010-02-24 17:57:57 +00:00
|
|
|
gfxPlatformGtk::GetFontList(nsIAtom *aLangGroup,
|
2006-01-10 20:26:40 +00:00
|
|
|
const nsACString& aGenericFamily,
|
2009-01-18 20:14:14 +00:00
|
|
|
nsTArray<nsString>& aListOfFonts)
|
2006-01-10 20:26:40 +00:00
|
|
|
{
|
2007-01-30 08:20:29 +00:00
|
|
|
return sFontconfigUtils->GetFontList(aLangGroup, aGenericFamily,
|
|
|
|
aListOfFonts);
|
2006-11-21 06:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxPlatformGtk::UpdateFontList()
|
|
|
|
{
|
2007-01-30 08:20:29 +00:00
|
|
|
return sFontconfigUtils->UpdateFontList();
|
2006-11-21 06:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxPlatformGtk::ResolveFontName(const nsAString& aFontName,
|
|
|
|
FontResolverCallback aCallback,
|
|
|
|
void *aClosure,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool& aAborted)
|
2006-11-21 06:31:04 +00:00
|
|
|
{
|
2007-01-30 08:20:29 +00:00
|
|
|
return sFontconfigUtils->ResolveFontName(aFontName, aCallback,
|
|
|
|
aClosure, aAborted);
|
2006-01-10 20:26:40 +00:00
|
|
|
}
|
2006-04-18 15:21:42 +00:00
|
|
|
|
2008-03-13 10:32:50 +00:00
|
|
|
nsresult
|
|
|
|
gfxPlatformGtk::GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName)
|
|
|
|
{
|
|
|
|
return sFontconfigUtils->GetStandardFamilyName(aFontName, aFamilyName);
|
|
|
|
}
|
|
|
|
|
2007-04-02 19:06:16 +00:00
|
|
|
gfxFontGroup *
|
|
|
|
gfxPlatformGtk::CreateFontGroup(const nsAString &aFamilies,
|
2008-10-01 03:01:53 +00:00
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet)
|
2007-04-02 19:06:16 +00:00
|
|
|
{
|
2008-10-01 03:01:53 +00:00
|
|
|
return new gfxPangoFontGroup(aFamilies, aStyle, aUserFontSet);
|
2007-04-02 19:06:16 +00:00
|
|
|
}
|
|
|
|
|
2009-01-03 03:21:49 +00:00
|
|
|
gfxFontEntry*
|
|
|
|
gfxPlatformGtk::LookupLocalFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const nsAString& aFontName)
|
|
|
|
{
|
|
|
|
return gfxPangoFontGroup::NewFontEntry(*aProxyEntry, aFontName);
|
|
|
|
}
|
|
|
|
|
2008-12-05 23:19:27 +00:00
|
|
|
gfxFontEntry*
|
|
|
|
gfxPlatformGtk::MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint8_t *aFontData, uint32_t aLength)
|
2008-12-05 23:19:27 +00:00
|
|
|
{
|
2009-08-30 13:55:24 +00:00
|
|
|
// passing ownership of the font data to the new font entry
|
|
|
|
return gfxPangoFontGroup::NewFontEntry(*aProxyEntry,
|
2008-12-05 23:19:27 +00:00
|
|
|
aFontData, aLength);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
gfxPlatformGtk::IsFontFormatSupported(nsIURI *aFontURI, uint32_t aFormatFlags)
|
2008-12-05 23:19:27 +00:00
|
|
|
{
|
2009-01-13 05:16:58 +00:00
|
|
|
// check for strange format flags
|
|
|
|
NS_ASSERTION(!(aFormatFlags & gfxUserFontSet::FLAG_FORMAT_NOT_USED),
|
|
|
|
"strange font format hint set");
|
2008-12-05 23:19:27 +00:00
|
|
|
|
2009-01-13 05:16:58 +00:00
|
|
|
// accept supported formats
|
2008-12-05 23:19:27 +00:00
|
|
|
// Pango doesn't apply features from AAT TrueType extensions.
|
|
|
|
// Assume that if this is the only SFNT format specified,
|
|
|
|
// then AAT extensions are required for complex script support.
|
2009-09-17 11:03:12 +00:00
|
|
|
if (aFormatFlags & (gfxUserFontSet::FLAG_FORMAT_WOFF |
|
|
|
|
gfxUserFontSet::FLAG_FORMAT_OPENTYPE |
|
2009-01-13 05:16:58 +00:00
|
|
|
gfxUserFontSet::FLAG_FORMAT_TRUETYPE)) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2009-01-13 05:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// reject all other formats, known and unknown
|
|
|
|
if (aFormatFlags != 0) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2008-12-05 23:19:27 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 05:16:58 +00:00
|
|
|
// no format hint set, need to look at data
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2008-12-05 23:19:27 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static int32_t sDPI = 0;
|
2010-08-13 09:58:01 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
2010-08-13 09:58:01 +00:00
|
|
|
gfxPlatformGtk::GetDPI()
|
2006-04-18 15:21:42 +00:00
|
|
|
{
|
2010-08-13 09:58:01 +00:00
|
|
|
if (!sDPI) {
|
|
|
|
// Make sure init is run so we have a resolution
|
|
|
|
GdkScreen *screen = gdk_screen_get_default();
|
|
|
|
gtk_settings_get_for_screen(screen);
|
2012-08-22 15:56:38 +00:00
|
|
|
sDPI = int32_t(round(gdk_screen_get_resolution(screen)));
|
2010-08-13 09:58:01 +00:00
|
|
|
if (sDPI <= 0) {
|
|
|
|
// Fall back to something sane
|
|
|
|
sDPI = 96;
|
|
|
|
}
|
2006-04-18 15:21:42 +00:00
|
|
|
}
|
2010-08-13 09:58:01 +00:00
|
|
|
return sDPI;
|
2006-04-18 15:21:42 +00:00
|
|
|
}
|
2007-07-23 22:02:17 +00:00
|
|
|
|
2010-12-15 18:17:26 +00:00
|
|
|
gfxImageFormat
|
|
|
|
gfxPlatformGtk::GetOffscreenFormat()
|
|
|
|
{
|
2012-05-26 04:38:17 +00:00
|
|
|
// Make sure there is a screen
|
|
|
|
GdkScreen *screen = gdk_screen_get_default();
|
2012-06-28 00:15:32 +00:00
|
|
|
if (screen && gdk_visual_get_depth(gdk_visual_get_system()) == 16) {
|
2014-01-23 18:26:40 +00:00
|
|
|
return gfxImageFormat::RGB16_565;
|
2010-12-15 18:17:26 +00:00
|
|
|
}
|
|
|
|
|
2014-01-23 18:26:40 +00:00
|
|
|
return gfxImageFormat::RGB24;
|
2010-12-15 18:17:26 +00:00
|
|
|
}
|
|
|
|
|
2013-04-30 03:16:04 +00:00
|
|
|
static int sDepth = 0;
|
|
|
|
|
|
|
|
int
|
|
|
|
gfxPlatformGtk::GetScreenDepth() const
|
|
|
|
{
|
|
|
|
if (!sDepth) {
|
|
|
|
GdkScreen *screen = gdk_screen_get_default();
|
|
|
|
if (screen) {
|
|
|
|
sDepth = gdk_visual_get_depth(gdk_visual_get_system());
|
|
|
|
} else {
|
|
|
|
sDepth = 24;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return sDepth;
|
|
|
|
}
|
|
|
|
|
2013-06-20 21:32:04 +00:00
|
|
|
bool
|
|
|
|
gfxPlatformGtk::SupportsOffMainThreadCompositing()
|
|
|
|
{
|
2013-08-19 07:13:32 +00:00
|
|
|
// Nightly builds have OMTC support by default for Electrolysis testing.
|
|
|
|
#if defined(MOZ_X11) && !defined(NIGHTLY_BUILD)
|
2013-06-20 21:32:04 +00:00
|
|
|
return (PR_GetEnv("MOZ_USE_OMTC") != nullptr) ||
|
|
|
|
(PR_GetEnv("MOZ_OMTC_ENABLED") != nullptr);
|
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-11-07 10:20:08 +00:00
|
|
|
void
|
|
|
|
gfxPlatformGtk::GetPlatformCMSOutputProfile(void *&mem, size_t &size)
|
2007-07-23 22:02:17 +00:00
|
|
|
{
|
2013-11-07 10:20:08 +00:00
|
|
|
mem = nullptr;
|
|
|
|
size = 0;
|
|
|
|
|
2008-08-06 20:48:55 +00:00
|
|
|
#ifdef MOZ_X11
|
2007-07-23 22:02:17 +00:00
|
|
|
const char EDID1_ATOM_NAME[] = "XFree86_DDC_EDID1_RAWDATA";
|
|
|
|
const char ICC_PROFILE_ATOM_NAME[] = "_ICC_PROFILE";
|
|
|
|
|
|
|
|
Atom edidAtom, iccAtom;
|
2012-06-28 00:15:32 +00:00
|
|
|
Display *dpy = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
|
2013-03-22 03:12:30 +00:00
|
|
|
// In xpcshell tests, we never initialize X and hence don't have a Display.
|
|
|
|
// In this case, there's no output colour management to be done, so we just
|
2013-11-07 10:20:08 +00:00
|
|
|
// return with nullptr.
|
|
|
|
if (!dpy)
|
|
|
|
return;
|
|
|
|
|
2007-07-23 22:02:17 +00:00
|
|
|
Window root = gdk_x11_get_default_root_xwindow();
|
|
|
|
|
|
|
|
Atom retAtom;
|
|
|
|
int retFormat;
|
|
|
|
unsigned long retLength, retAfter;
|
|
|
|
unsigned char *retProperty ;
|
|
|
|
|
|
|
|
iccAtom = XInternAtom(dpy, ICC_PROFILE_ATOM_NAME, TRUE);
|
|
|
|
if (iccAtom) {
|
|
|
|
// read once to get size, once for the data
|
|
|
|
if (Success == XGetWindowProperty(dpy, root, iccAtom,
|
2012-07-19 01:09:13 +00:00
|
|
|
0, INT_MAX /* length */,
|
2007-07-23 22:02:17 +00:00
|
|
|
False, AnyPropertyType,
|
|
|
|
&retAtom, &retFormat, &retLength,
|
|
|
|
&retAfter, &retProperty)) {
|
2009-01-07 19:50:14 +00:00
|
|
|
|
2013-11-07 10:20:08 +00:00
|
|
|
if (retLength > 0) {
|
|
|
|
void *buffer = malloc(retLength);
|
|
|
|
if (buffer) {
|
|
|
|
memcpy(buffer, retProperty, retLength);
|
|
|
|
mem = buffer;
|
|
|
|
size = retLength;
|
|
|
|
}
|
|
|
|
}
|
2007-07-23 22:02:17 +00:00
|
|
|
|
|
|
|
XFree(retProperty);
|
2013-11-07 10:20:08 +00:00
|
|
|
if (size > 0) {
|
2007-07-23 22:02:17 +00:00
|
|
|
#ifdef DEBUG_tor
|
|
|
|
fprintf(stderr,
|
|
|
|
"ICM profile read from %s successfully\n",
|
|
|
|
ICC_PROFILE_ATOM_NAME);
|
|
|
|
#endif
|
2013-11-07 10:20:08 +00:00
|
|
|
return;
|
2007-07-23 22:02:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
edidAtom = XInternAtom(dpy, EDID1_ATOM_NAME, TRUE);
|
|
|
|
if (edidAtom) {
|
|
|
|
if (Success == XGetWindowProperty(dpy, root, edidAtom, 0, 32,
|
|
|
|
False, AnyPropertyType,
|
|
|
|
&retAtom, &retFormat, &retLength,
|
|
|
|
&retAfter, &retProperty)) {
|
|
|
|
double gamma;
|
2009-04-07 16:02:11 +00:00
|
|
|
qcms_CIE_xyY whitePoint;
|
|
|
|
qcms_CIE_xyYTRIPLE primaries;
|
2007-07-23 22:02:17 +00:00
|
|
|
|
|
|
|
if (retLength != 128) {
|
|
|
|
#ifdef DEBUG_tor
|
|
|
|
fprintf(stderr, "Short EDID data\n");
|
|
|
|
#endif
|
2013-11-07 10:20:08 +00:00
|
|
|
return;
|
2007-07-23 22:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Format documented in "VESA E-EDID Implementation Guide"
|
|
|
|
|
|
|
|
gamma = (100 + retProperty[0x17]) / 100.0;
|
|
|
|
whitePoint.x = ((retProperty[0x21] << 2) |
|
|
|
|
(retProperty[0x1a] >> 2 & 3)) / 1024.0;
|
|
|
|
whitePoint.y = ((retProperty[0x22] << 2) |
|
|
|
|
(retProperty[0x1a] >> 0 & 3)) / 1024.0;
|
|
|
|
whitePoint.Y = 1.0;
|
|
|
|
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.red.x = ((retProperty[0x1b] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x19] >> 6 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.red.y = ((retProperty[0x1c] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x19] >> 4 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.red.Y = 1.0;
|
2007-07-23 22:02:17 +00:00
|
|
|
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.green.x = ((retProperty[0x1d] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x19] >> 2 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.green.y = ((retProperty[0x1e] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x19] >> 0 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.green.Y = 1.0;
|
2007-07-23 22:02:17 +00:00
|
|
|
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.blue.x = ((retProperty[0x1f] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x1a] >> 6 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.blue.y = ((retProperty[0x20] << 2) |
|
2007-07-23 22:02:17 +00:00
|
|
|
(retProperty[0x1a] >> 4 & 3)) / 1024.0;
|
2009-04-07 16:02:11 +00:00
|
|
|
primaries.blue.Y = 1.0;
|
2007-07-23 22:02:17 +00:00
|
|
|
|
|
|
|
XFree(retProperty);
|
|
|
|
|
|
|
|
#ifdef DEBUG_tor
|
|
|
|
fprintf(stderr, "EDID gamma: %f\n", gamma);
|
|
|
|
fprintf(stderr, "EDID whitepoint: %f %f %f\n",
|
|
|
|
whitePoint.x, whitePoint.y, whitePoint.Y);
|
|
|
|
fprintf(stderr, "EDID primaries: [%f %f %f] [%f %f %f] [%f %f %f]\n",
|
|
|
|
primaries.Red.x, primaries.Red.y, primaries.Red.Y,
|
|
|
|
primaries.Green.x, primaries.Green.y, primaries.Green.Y,
|
|
|
|
primaries.Blue.x, primaries.Blue.y, primaries.Blue.Y);
|
|
|
|
#endif
|
|
|
|
|
2013-11-07 10:20:08 +00:00
|
|
|
qcms_data_create_rgb_with_gamma(whitePoint, primaries, gamma, &mem, &size);
|
2007-07-23 22:02:17 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_tor
|
2013-11-07 10:20:08 +00:00
|
|
|
if (size > 0) {
|
2007-07-23 22:02:17 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"ICM profile read from %s successfully\n",
|
|
|
|
EDID1_ATOM_NAME);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2008-08-06 20:48:55 +00:00
|
|
|
#endif
|
2007-07-23 22:02:17 +00:00
|
|
|
}
|
2008-08-06 20:48:55 +00:00
|
|
|
|
|
|
|
|
2012-06-28 00:15:32 +00:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2008-08-06 20:48:55 +00:00
|
|
|
void
|
2013-10-25 21:25:40 +00:00
|
|
|
gfxPlatformGtk::SetGdkDrawable(cairo_surface_t *target,
|
2008-08-06 20:48:55 +00:00
|
|
|
GdkDrawable *drawable)
|
|
|
|
{
|
2013-10-25 21:25:40 +00:00
|
|
|
if (cairo_surface_status(target))
|
2008-08-06 20:48:55 +00:00
|
|
|
return;
|
|
|
|
|
2009-02-02 17:49:58 +00:00
|
|
|
g_object_ref(drawable);
|
2008-08-19 03:22:42 +00:00
|
|
|
|
2013-10-25 21:25:40 +00:00
|
|
|
cairo_surface_set_user_data (target,
|
2008-08-06 20:48:55 +00:00
|
|
|
&cairo_gdk_drawable_key,
|
|
|
|
drawable,
|
2012-06-28 00:15:32 +00:00
|
|
|
g_object_unref);
|
2008-08-06 20:48:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkDrawable *
|
2013-10-25 21:25:40 +00:00
|
|
|
gfxPlatformGtk::GetGdkDrawable(cairo_surface_t *target)
|
2008-08-06 20:48:55 +00:00
|
|
|
{
|
2013-10-25 21:25:40 +00:00
|
|
|
if (cairo_surface_status(target))
|
2013-07-31 15:44:31 +00:00
|
|
|
return nullptr;
|
2008-08-06 20:48:55 +00:00
|
|
|
|
2008-08-19 03:22:42 +00:00
|
|
|
GdkDrawable *result;
|
|
|
|
|
2013-10-25 21:25:40 +00:00
|
|
|
result = (GdkDrawable*) cairo_surface_get_user_data (target,
|
2008-08-19 03:22:42 +00:00
|
|
|
&cairo_gdk_drawable_key);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
#ifdef MOZ_X11
|
2013-10-25 21:25:40 +00:00
|
|
|
if (cairo_surface_get_type(target) != CAIRO_SURFACE_TYPE_XLIB)
|
2013-07-31 15:44:31 +00:00
|
|
|
return nullptr;
|
2010-06-22 23:11:42 +00:00
|
|
|
|
|
|
|
// try looking it up in gdk's table
|
2013-10-25 21:25:40 +00:00
|
|
|
result = (GdkDrawable*) gdk_xid_table_lookup(cairo_xlib_surface_get_drawable(target));
|
2010-06-22 23:11:42 +00:00
|
|
|
if (result) {
|
|
|
|
SetGdkDrawable(target, result);
|
|
|
|
return result;
|
|
|
|
}
|
2010-07-02 04:04:09 +00:00
|
|
|
#endif
|
2008-08-19 03:22:42 +00:00
|
|
|
|
2013-07-31 15:44:31 +00:00
|
|
|
return nullptr;
|
2008-08-06 20:48:55 +00:00
|
|
|
}
|
2012-06-28 00:15:32 +00:00
|
|
|
#endif
|
2012-01-26 00:54:31 +00:00
|
|
|
|
2012-09-24 15:02:49 +00:00
|
|
|
TemporaryRef<ScaledFont>
|
2012-07-24 10:18:37 +00:00
|
|
|
gfxPlatformGtk::GetScaledFontForFont(DrawTarget* aTarget, gfxFont *aFont)
|
2012-01-26 00:54:31 +00:00
|
|
|
{
|
2014-01-30 07:01:16 +00:00
|
|
|
return GetScaledFontForFontWithCairoSkia(aTarget, aFont);
|
2012-07-26 06:48:24 +00:00
|
|
|
}
|