2005-11-29 23:29:45 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04: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 23:29:45 +03:00
|
|
|
|
|
|
|
#ifndef GFX_PLATFORM_H
|
|
|
|
#define GFX_PLATFORM_H
|
|
|
|
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2014-10-03 12:50:42 +04:00
|
|
|
#include "mozilla/gfx/Types.h"
|
2009-01-18 23:14:14 +03:00
|
|
|
#include "nsTArray.h"
|
2013-09-23 21:25:00 +04:00
|
|
|
#include "nsString.h"
|
2013-09-25 00:45:13 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2016-04-21 20:58:59 +03:00
|
|
|
#include "nsUnicodeScriptCodes.h"
|
2008-09-09 01:47:26 +04:00
|
|
|
|
2005-11-29 23:29:45 +03:00
|
|
|
#include "gfxTypes.h"
|
2014-06-06 10:09:23 +04:00
|
|
|
#include "gfxFontFamilyList.h"
|
2014-06-11 01:51:24 +04:00
|
|
|
#include "gfxBlur.h"
|
2016-07-05 04:02:24 +03:00
|
|
|
#include "gfxSkipChars.h"
|
2013-09-25 00:45:13 +04:00
|
|
|
#include "nsRect.h"
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2009-04-07 20:02:11 +04:00
|
|
|
#include "qcms.h"
|
2011-08-25 12:46:01 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2011-11-18 08:00:38 +04:00
|
|
|
#include "GfxInfoCollector.h"
|
2011-08-25 12:46:01 +04:00
|
|
|
|
2013-08-03 02:50:17 +04:00
|
|
|
#include "mozilla/layers/CompositorTypes.h"
|
|
|
|
|
2013-09-25 00:45:14 +04:00
|
|
|
class gfxASurface;
|
2008-08-06 08:34:06 +04:00
|
|
|
class gfxFont;
|
2007-04-02 23:06:16 +04:00
|
|
|
class gfxFontGroup;
|
2007-04-05 17:36:04 +04:00
|
|
|
struct gfxFontStyle;
|
2008-10-01 07:01:53 +04:00
|
|
|
class gfxUserFontSet;
|
|
|
|
class gfxFontEntry;
|
2009-08-16 17:52:12 +04:00
|
|
|
class gfxPlatformFontList;
|
2009-10-07 19:26:58 +04:00
|
|
|
class gfxTextRun;
|
2008-10-01 07:01:53 +04:00
|
|
|
class nsIURI;
|
2010-02-24 20:57:57 +03:00
|
|
|
class nsIAtom;
|
2013-10-08 03:15:59 +04:00
|
|
|
class nsIObserver;
|
2015-02-06 02:18:00 +03:00
|
|
|
class SRGBOverrideObserver;
|
2015-09-11 07:24:33 +03:00
|
|
|
class gfxTextPerfMetrics;
|
2006-03-25 03:34:48 +03:00
|
|
|
|
2012-12-01 03:58:00 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
2014-03-06 01:49:37 +04:00
|
|
|
class SkiaGLGlue;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gl
|
2013-10-08 03:15:59 +04:00
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
|
|
|
class SourceSurface;
|
2014-04-15 06:36:26 +04:00
|
|
|
class DataSourceSurface;
|
2013-10-08 03:15:59 +04:00
|
|
|
class ScaledFont;
|
|
|
|
class DrawEventRecorder;
|
2014-12-18 19:30:06 +03:00
|
|
|
class VsyncSource;
|
2016-08-21 06:59:11 +03:00
|
|
|
class ContentDeviceData;
|
2016-08-21 06:59:11 +03:00
|
|
|
class GPUDeviceData;
|
2016-10-28 05:21:34 +03:00
|
|
|
class FeatureState;
|
2014-01-10 23:06:16 +04:00
|
|
|
|
|
|
|
inline uint32_t
|
|
|
|
BackendTypeBit(BackendType b)
|
|
|
|
{
|
2014-01-10 23:06:17 +04:00
|
|
|
return 1 << uint8_t(b);
|
2014-01-10 23:06:16 +04:00
|
|
|
}
|
2015-07-13 18:25:42 +03:00
|
|
|
|
|
|
|
} // namespace gfx
|
2016-11-15 16:58:29 +03:00
|
|
|
namespace dom {
|
|
|
|
class FontFamilyListEntry;
|
|
|
|
}
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|
2012-12-01 03:58:00 +04:00
|
|
|
|
2014-05-08 02:09:41 +04:00
|
|
|
#define MOZ_PERFORMANCE_WARNING(module, ...) \
|
|
|
|
do { \
|
2015-07-13 18:53:10 +03:00
|
|
|
if (gfxPlatform::PerfWarnings()) { \
|
2014-05-08 02:09:41 +04:00
|
|
|
printf_stderr("[" module "] " __VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2013-09-07 07:08:36 +04:00
|
|
|
enum eCMSMode {
|
|
|
|
eCMSMode_Off = 0, // No color management
|
|
|
|
eCMSMode_All = 1, // Color manage everything
|
|
|
|
eCMSMode_TaggedOnly = 2, // Color manage tagged Images Only
|
|
|
|
eCMSMode_AllCount = 3
|
|
|
|
};
|
|
|
|
|
2011-01-21 19:44:33 +03:00
|
|
|
enum eGfxLog {
|
|
|
|
// all font enumerations, localized names, fullname/psnames, cmap loads
|
|
|
|
eGfxLog_fontlist = 0,
|
|
|
|
// timing info on font initialization
|
|
|
|
eGfxLog_fontinit = 1,
|
|
|
|
// dump text runs, font matching, system fallback for content
|
|
|
|
eGfxLog_textrun = 2,
|
|
|
|
// dump text runs, font matching, system fallback for chrome
|
2012-03-09 06:05:14 +04:00
|
|
|
eGfxLog_textrunui = 3,
|
|
|
|
// dump cmap coverage data as they are loaded
|
2013-11-25 08:59:56 +04:00
|
|
|
eGfxLog_cmapdata = 4,
|
|
|
|
// text perf data
|
|
|
|
eGfxLog_textperf = 5
|
2011-01-21 19:44:33 +03:00
|
|
|
};
|
|
|
|
|
2008-01-31 03:23:36 +03:00
|
|
|
// when searching through pref langs, max number of pref langs
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint32_t kMaxLenPrefLangList = 32;
|
2008-01-31 03:23:36 +03:00
|
|
|
|
2010-05-27 09:05:30 +04:00
|
|
|
#define UNINITIALIZED_VALUE (-1)
|
|
|
|
|
2011-11-18 08:00:38 +04:00
|
|
|
inline const char*
|
|
|
|
GetBackendName(mozilla::gfx::BackendType aBackend)
|
|
|
|
{
|
|
|
|
switch (aBackend) {
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::DIRECT2D:
|
2011-11-18 08:00:38 +04:00
|
|
|
return "direct2d";
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::CAIRO:
|
2011-11-18 08:00:38 +04:00
|
|
|
return "cairo";
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::SKIA:
|
2011-11-18 08:00:38 +04:00
|
|
|
return "skia";
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::RECORDING:
|
2012-09-24 19:02:50 +04:00
|
|
|
return "recording";
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::DIRECT2D1_1:
|
2013-07-17 16:12:22 +04:00
|
|
|
return "direct2d 1.1";
|
2014-01-10 23:06:16 +04:00
|
|
|
case mozilla::gfx::BackendType::NONE:
|
2012-01-28 02:38:00 +04:00
|
|
|
return "none";
|
2016-08-04 21:33:44 +03:00
|
|
|
case mozilla::gfx::BackendType::BACKEND_LAST:
|
|
|
|
return "invalid";
|
2011-11-18 08:00:38 +04:00
|
|
|
}
|
2013-06-29 05:38:30 +04:00
|
|
|
MOZ_CRASH("Incomplete switch");
|
2011-11-18 08:00:38 +04:00
|
|
|
}
|
|
|
|
|
2015-02-23 01:53:32 +03:00
|
|
|
enum class DeviceResetReason
|
|
|
|
{
|
|
|
|
OK = 0,
|
|
|
|
HUNG,
|
|
|
|
REMOVED,
|
|
|
|
RESET,
|
|
|
|
DRIVER_ERROR,
|
2015-03-19 20:42:27 +03:00
|
|
|
INVALID_CALL,
|
2015-03-26 07:01:31 +03:00
|
|
|
OUT_OF_MEMORY,
|
2015-12-30 03:30:47 +03:00
|
|
|
FORCED_RESET,
|
2016-11-11 22:57:06 +03:00
|
|
|
UNKNOWN,
|
|
|
|
D3D9_RESET
|
2015-02-23 01:53:32 +03:00
|
|
|
};
|
|
|
|
|
2015-12-30 03:30:47 +03:00
|
|
|
enum class ForcedDeviceResetReason
|
|
|
|
{
|
2016-05-16 14:55:02 +03:00
|
|
|
OPENSHAREDHANDLE = 0,
|
|
|
|
COMPOSITOR_UPDATED,
|
2015-12-30 03:30:47 +03:00
|
|
|
};
|
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxPlatform {
|
2015-02-13 00:26:00 +03:00
|
|
|
friend class SRGBOverrideObserver;
|
2015-02-06 02:18:00 +03:00
|
|
|
|
2005-11-29 23:29:45 +03:00
|
|
|
public:
|
2014-10-03 12:50:42 +04:00
|
|
|
typedef mozilla::gfx::Color Color;
|
2014-06-12 23:24:05 +04:00
|
|
|
typedef mozilla::gfx::DataSourceSurface DataSourceSurface;
|
|
|
|
typedef mozilla::gfx::DrawTarget DrawTarget;
|
2014-02-09 12:04:38 +04:00
|
|
|
typedef mozilla::gfx::IntSize IntSize;
|
2014-06-12 23:24:05 +04:00
|
|
|
typedef mozilla::gfx::SourceSurface SourceSurface;
|
2016-04-21 20:58:59 +03:00
|
|
|
typedef mozilla::unicode::Script Script;
|
2014-02-09 12:04:38 +04:00
|
|
|
|
2005-11-29 23:29:45 +03:00
|
|
|
/**
|
|
|
|
* Return a pointer to the current active platform.
|
|
|
|
* This is a singleton; it contains mostly convenience
|
|
|
|
* functions to obtain platform-specific objects.
|
|
|
|
*/
|
2005-11-30 01:56:40 +03:00
|
|
|
static gfxPlatform *GetPlatform();
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2015-07-20 00:50:35 +03:00
|
|
|
/**
|
|
|
|
* Returns whether or not graphics has been initialized yet. This is
|
|
|
|
* intended for Telemetry where we don't necessarily want to initialize
|
|
|
|
* graphics just to observe its state.
|
|
|
|
*/
|
|
|
|
static bool Initialized();
|
2007-03-30 01:48:46 +04:00
|
|
|
|
2007-03-20 02:16:15 +03:00
|
|
|
/**
|
2011-04-21 23:36:53 +04:00
|
|
|
* Shut down Thebes.
|
|
|
|
* Init() arranges for this to be called at an appropriate time.
|
2007-03-20 02:16:15 +03:00
|
|
|
*/
|
|
|
|
static void Shutdown();
|
|
|
|
|
2014-06-06 17:51:24 +04:00
|
|
|
static void InitLayersIPC();
|
|
|
|
static void ShutdownLayersIPC();
|
|
|
|
|
2016-07-20 07:11:44 +03:00
|
|
|
/**
|
|
|
|
* Initialize ScrollMetadata statics. Does not depend on gfxPlatform.
|
|
|
|
*/
|
|
|
|
static void InitNullMetadata();
|
|
|
|
|
2016-10-28 20:22:47 +03:00
|
|
|
static void InitMoz2DLogging();
|
2016-10-04 01:48:11 +03:00
|
|
|
|
2005-11-29 23:29:45 +03:00
|
|
|
/**
|
|
|
|
* Create an offscreen surface of the given dimensions
|
2007-11-27 12:35:18 +03:00
|
|
|
* and image format.
|
2005-11-29 23:29:45 +03:00
|
|
|
*/
|
2014-02-09 12:04:38 +04:00
|
|
|
virtual already_AddRefed<gfxASurface>
|
2015-07-07 04:21:47 +03:00
|
|
|
CreateOffscreenSurface(const IntSize& aSize,
|
|
|
|
gfxImageFormat aFormat) = 0;
|
2006-03-25 03:34:48 +03:00
|
|
|
|
2013-08-09 03:32:19 +04:00
|
|
|
/**
|
2016-02-26 18:55:59 +03:00
|
|
|
* Beware that this method may return DrawTargets which are not fully supported
|
2013-08-09 03:32:19 +04:00
|
|
|
* on the current platform and might fail silently in subtle ways. This is a massive
|
|
|
|
* potential footgun. You should only use these methods for canvas drawing really.
|
|
|
|
* Use extreme caution if you use them for content where you are not 100% sure we
|
|
|
|
* support the DrawTarget we get back.
|
|
|
|
* See SupportsAzureContentForDrawTarget.
|
|
|
|
*/
|
2016-11-10 07:49:09 +03:00
|
|
|
static already_AddRefed<DrawTarget>
|
2012-07-24 14:18:38 +04:00
|
|
|
CreateDrawTargetForSurface(gfxASurface *aSurface, const mozilla::gfx::IntSize& aSize);
|
2011-06-24 21:41:18 +04:00
|
|
|
|
2012-05-21 19:27:32 +04:00
|
|
|
/*
|
2012-07-26 06:30:20 +04:00
|
|
|
* Creates a SourceSurface for a gfxASurface. This function does no caching,
|
|
|
|
* so the caller should cache the gfxASurface if it will be used frequently.
|
|
|
|
* The returned surface keeps a reference to aTarget, so it is OK to keep the
|
|
|
|
* surface, even if aTarget changes.
|
|
|
|
* aTarget should not keep a reference to the returned surface because that
|
|
|
|
* will cause a cycle.
|
2014-06-06 13:24:24 +04:00
|
|
|
*
|
|
|
|
* This function is static so that it can be accessed from
|
|
|
|
* PluginInstanceChild (where we can't call gfxPlatform::GetPlatform()
|
|
|
|
* because the prefs service can only be accessed from the main process).
|
2016-08-05 20:29:12 +03:00
|
|
|
*
|
|
|
|
* aIsPlugin is used to tell the backend that they can optimize this surface
|
|
|
|
* specifically because it's used for a plugin. This is mostly for Skia.
|
2012-05-21 19:27:32 +04:00
|
|
|
*/
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<SourceSurface>
|
2016-08-05 20:29:12 +03:00
|
|
|
GetSourceSurfaceForSurface(mozilla::gfx::DrawTarget *aTarget,
|
|
|
|
gfxASurface *aSurface,
|
|
|
|
bool aIsPlugin = false);
|
2011-06-24 21:41:18 +04:00
|
|
|
|
2013-07-12 06:44:29 +04:00
|
|
|
static void ClearSourceSurfaceForSurface(gfxASurface *aSurface);
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<DataSourceSurface>
|
2014-04-15 06:36:26 +04:00
|
|
|
GetWrappedDataSourceSurface(gfxASurface *aSurface);
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<mozilla::gfx::ScaledFont>
|
2012-07-24 14:18:37 +04:00
|
|
|
GetScaledFontForFont(mozilla::gfx::DrawTarget* aTarget, gfxFont *aFont);
|
2011-06-24 21:41:18 +04:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<DrawTarget>
|
2013-08-23 10:13:55 +04:00
|
|
|
CreateOffscreenContentDrawTarget(const mozilla::gfx::IntSize& aSize, mozilla::gfx::SurfaceFormat aFormat);
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<DrawTarget>
|
2013-08-23 10:13:55 +04:00
|
|
|
CreateOffscreenCanvasDrawTarget(const mozilla::gfx::IntSize& aSize, mozilla::gfx::SurfaceFormat aFormat);
|
2011-11-02 23:55:03 +04:00
|
|
|
|
2016-07-29 01:32:00 +03:00
|
|
|
already_AddRefed<DrawTarget>
|
|
|
|
CreateSimilarSoftwareDrawTarget(DrawTarget* aDT, const IntSize &aSize, mozilla::gfx::SurfaceFormat aFormat);
|
|
|
|
|
2016-08-12 00:54:08 +03:00
|
|
|
static already_AddRefed<DrawTarget>
|
2015-08-05 17:24:55 +03:00
|
|
|
CreateDrawTargetForData(unsigned char* aData, const mozilla::gfx::IntSize& aSize,
|
2012-04-02 23:15:08 +04:00
|
|
|
int32_t aStride, mozilla::gfx::SurfaceFormat aFormat);
|
|
|
|
|
2014-09-15 02:22:44 +04:00
|
|
|
/**
|
|
|
|
* Returns true if rendering to data surfaces produces the same results as
|
|
|
|
* rendering to offscreen surfaces on this platform, making it safe to
|
|
|
|
* render content to data surfaces. This is generally false on platforms
|
|
|
|
* which use different backends for each type of DrawTarget.
|
|
|
|
*/
|
|
|
|
virtual bool CanRenderContentToDataSurface() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-28 02:04:37 +04:00
|
|
|
/**
|
|
|
|
* Returns true if we should use Azure to render content with aTarget. For
|
|
|
|
* example, it is possible that we are using Direct2D for rendering and thus
|
|
|
|
* using Azure. But we want to render to a CairoDrawTarget, in which case
|
|
|
|
* SupportsAzureContent will return true but SupportsAzureContentForDrawTarget
|
|
|
|
* will return false.
|
|
|
|
*/
|
|
|
|
bool SupportsAzureContentForDrawTarget(mozilla::gfx::DrawTarget* aTarget);
|
|
|
|
|
2013-08-09 03:32:19 +04:00
|
|
|
bool SupportsAzureContentForType(mozilla::gfx::BackendType aType) {
|
2014-01-10 23:06:16 +04:00
|
|
|
return BackendTypeBit(aType) & mContentBackendBitmask;
|
2013-08-09 03:32:19 +04:00
|
|
|
}
|
|
|
|
|
2016-02-22 16:23:00 +03:00
|
|
|
/// This function also lets us know if the current preferences/platform
|
2014-09-11 00:15:43 +04:00
|
|
|
/// combination allows for both accelerated and not accelerated canvas
|
|
|
|
/// implementations. If it does, and other relevant preferences are
|
|
|
|
/// asking for it, we will examine the commands in the first few seconds
|
|
|
|
/// of the canvas usage, and potentially change to accelerated or
|
|
|
|
/// non-accelerated canvas.
|
2016-09-30 20:54:22 +03:00
|
|
|
bool AllowOpenGLCanvas();
|
2014-03-06 01:49:37 +04:00
|
|
|
virtual void InitializeSkiaCacheLimits();
|
2014-02-21 03:23:52 +04:00
|
|
|
|
2015-06-04 23:51:10 +03:00
|
|
|
static bool AsyncPanZoomEnabled();
|
|
|
|
|
2015-07-14 20:56:00 +03:00
|
|
|
virtual void GetAzureBackendInfo(mozilla::widget::InfoObject &aObj) {
|
2012-07-31 10:30:10 +04:00
|
|
|
aObj.DefineProperty("AzureCanvasBackend", GetBackendName(mPreferredCanvasBackend));
|
2016-09-30 20:54:22 +03:00
|
|
|
aObj.DefineProperty("AzureCanvasAccelerated", AllowOpenGLCanvas());
|
2012-07-31 10:30:10 +04:00
|
|
|
aObj.DefineProperty("AzureFallbackCanvasBackend", GetBackendName(mFallbackCanvasBackend));
|
2012-09-17 07:23:00 +04:00
|
|
|
aObj.DefineProperty("AzureContentBackend", GetBackendName(mContentBackend));
|
2012-07-31 10:30:10 +04:00
|
|
|
}
|
2015-03-25 01:04:44 +03:00
|
|
|
void GetApzSupportInfo(mozilla::widget::InfoObject& aObj);
|
2016-07-21 09:08:39 +03:00
|
|
|
void GetTilesSupportInfo(mozilla::widget::InfoObject& aObj);
|
2012-07-31 10:30:10 +04:00
|
|
|
|
2015-10-02 09:06:43 +03:00
|
|
|
// Get the default content backend that will be used with the default
|
|
|
|
// compositor. If the compositor is known when calling this function,
|
|
|
|
// GetContentBackendFor() should be called instead.
|
|
|
|
mozilla::gfx::BackendType GetDefaultContentBackend() {
|
|
|
|
return mContentBackend;
|
|
|
|
}
|
|
|
|
|
2016-11-28 11:40:29 +03:00
|
|
|
/// Return the software backend to use by default.
|
|
|
|
mozilla::gfx::BackendType GetSoftwareBackend() {
|
|
|
|
return mSoftwareBackend;
|
|
|
|
}
|
|
|
|
|
2015-10-02 09:06:43 +03:00
|
|
|
// Return the best content backend available that is compatible with the
|
|
|
|
// given layers backend.
|
|
|
|
virtual mozilla::gfx::BackendType GetContentBackendFor(mozilla::layers::LayersBackend aLayers) {
|
2014-03-18 01:35:20 +04:00
|
|
|
return mContentBackend;
|
|
|
|
}
|
|
|
|
|
2012-07-31 10:30:10 +04:00
|
|
|
mozilla::gfx::BackendType GetPreferredCanvasBackend() {
|
|
|
|
return mPreferredCanvasBackend;
|
2011-11-18 08:00:38 +04:00
|
|
|
}
|
2015-06-19 02:07:21 +03:00
|
|
|
mozilla::gfx::BackendType GetFallbackCanvasBackend() {
|
|
|
|
return mFallbackCanvasBackend;
|
|
|
|
}
|
2006-01-10 23:26:40 +03:00
|
|
|
/*
|
|
|
|
* Font bits
|
|
|
|
*/
|
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
virtual void SetupClusterBoundaries(gfxTextRun *aTextRun, const char16_t *aString);
|
2009-10-07 19:26:58 +04:00
|
|
|
|
2006-01-10 23:26:40 +03:00
|
|
|
/**
|
|
|
|
* Fill aListOfFonts with the results of querying the list of font names
|
|
|
|
* that correspond to the given language group or generic font family
|
|
|
|
* (or both, or neither).
|
|
|
|
*/
|
2010-02-24 20:57:57 +03:00
|
|
|
virtual nsresult GetFontList(nsIAtom *aLangGroup,
|
2006-01-10 23:26:40 +03:00
|
|
|
const nsACString& aGenericFamily,
|
2009-01-18 23:14:14 +03:00
|
|
|
nsTArray<nsString>& aListOfFonts);
|
2006-01-10 23:26:40 +03:00
|
|
|
|
2016-11-15 16:58:29 +03:00
|
|
|
/**
|
|
|
|
* Fill aFontFamilies with a list of FontFamilyListEntry records for the
|
|
|
|
* available fonts on the platform; used to pass the list from chrome to
|
|
|
|
* content process. Currently implemented only on MacOSX.
|
|
|
|
*/
|
|
|
|
virtual void GetSystemFontFamilyList(
|
|
|
|
InfallibleTArray<mozilla::dom::FontFamilyListEntry>* aFontFamilies)
|
|
|
|
{ }
|
|
|
|
|
2006-06-15 08:47:23 +04:00
|
|
|
/**
|
|
|
|
* Rebuilds the any cached system font lists
|
|
|
|
*/
|
|
|
|
virtual nsresult UpdateFontList();
|
|
|
|
|
2009-08-16 17:52:12 +04:00
|
|
|
/**
|
2010-11-08 14:02:27 +03:00
|
|
|
* Create the platform font-list object (gfxPlatformFontList concrete subclass).
|
|
|
|
* This function is responsible to create the appropriate subclass of
|
|
|
|
* gfxPlatformFontList *and* to call its InitFontList() method.
|
2009-08-16 17:52:12 +04:00
|
|
|
*/
|
|
|
|
virtual gfxPlatformFontList *CreatePlatformFontList() {
|
|
|
|
NS_NOTREACHED("oops, this platform doesn't have a gfxPlatformFontList implementation");
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2009-08-16 17:52:12 +04:00
|
|
|
}
|
|
|
|
|
2008-03-13 13:32:50 +03:00
|
|
|
/**
|
|
|
|
* Resolving a font name to family name. The result MUST be in the result of GetFontList().
|
|
|
|
* If the name doesn't in the system, aFamilyName will be empty string, but not failed.
|
|
|
|
*/
|
2016-03-18 15:43:38 +03:00
|
|
|
virtual nsresult GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
2008-03-13 13:32:50 +03:00
|
|
|
|
2007-04-02 23:06:16 +04:00
|
|
|
/**
|
|
|
|
* Create the appropriate platform font group
|
|
|
|
*/
|
2015-09-11 07:24:33 +03:00
|
|
|
virtual gfxFontGroup*
|
|
|
|
CreateFontGroup(const mozilla::FontFamilyList& aFontFamilyList,
|
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxTextPerfMetrics* aTextPerf,
|
2015-11-20 16:01:12 +03:00
|
|
|
gfxUserFontSet *aUserFontSet,
|
|
|
|
gfxFloat aDevToCssSize) = 0;
|
2015-08-05 17:24:55 +03:00
|
|
|
|
2008-10-01 07:01:53 +04:00
|
|
|
/**
|
2008-12-06 02:19:27 +03:00
|
|
|
* Look up a local platform font using the full font face name.
|
|
|
|
* (Needed to support @font-face src local().)
|
|
|
|
* Ownership of the returned gfxFontEntry is passed to the caller,
|
|
|
|
* who must either AddRef() or delete.
|
2008-10-01 07:01:53 +04:00
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
2016-03-18 15:43:38 +03:00
|
|
|
uint8_t aStyle);
|
2008-10-01 07:01:53 +04:00
|
|
|
|
|
|
|
/**
|
2008-12-06 02:19:27 +03:00
|
|
|
* Activate a platform font. (Needed to support @font-face src url().)
|
2009-08-30 17:55:24 +04:00
|
|
|
* aFontData is a NS_Malloc'ed block that must be freed by this function
|
|
|
|
* (or responsibility passed on) when it is no longer needed; the caller
|
|
|
|
* will NOT free it.
|
2008-12-06 02:19:27 +03:00
|
|
|
* Ownership of the returned gfxFontEntry is passed to the caller,
|
|
|
|
* who must either AddRef() or delete.
|
2008-10-01 07:01:53 +04:00
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
2015-10-19 05:16:43 +03:00
|
|
|
uint8_t aStyle,
|
2014-09-08 11:23:19 +04:00
|
|
|
const uint8_t* aFontData,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aLength);
|
2008-10-01 07:01:53 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether to allow downloadable fonts via @font-face rules
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DownloadableFontsEnabled();
|
2010-10-07 11:59:19 +04:00
|
|
|
|
2012-02-09 02:52:57 +04:00
|
|
|
/**
|
|
|
|
* True when hinting should be enabled. This setting shouldn't
|
|
|
|
* change per gecko process, while the process is live. If so the
|
|
|
|
* results are not defined.
|
|
|
|
*
|
|
|
|
* NB: this bit is only honored by the FT2 backend, currently.
|
|
|
|
*/
|
|
|
|
virtual bool FontHintingEnabled() { return true; }
|
|
|
|
|
2013-01-15 19:19:28 +04:00
|
|
|
/**
|
|
|
|
* True when zooming should not require reflow, so glyph metrics and
|
|
|
|
* positioning should not be adjusted for device pixels.
|
|
|
|
* If this is TRUE, then FontHintingEnabled() should be FALSE,
|
2016-11-16 09:01:30 +03:00
|
|
|
* but the converse is not necessarily required;
|
2013-01-15 19:19:28 +04:00
|
|
|
*
|
|
|
|
* Like FontHintingEnabled (above), this setting shouldn't
|
|
|
|
* change per gecko process, while the process is live. If so the
|
|
|
|
* results are not defined.
|
|
|
|
*
|
|
|
|
* NB: this bit is only honored by the FT2 backend, currently.
|
|
|
|
*/
|
|
|
|
virtual bool RequiresLinearZoom() { return false; }
|
|
|
|
|
2016-04-19 02:41:50 +03:00
|
|
|
/**
|
|
|
|
* Whether the frame->StyleFont().mFont.smoothing field is respected by
|
|
|
|
* text rendering on this platform.
|
|
|
|
*/
|
|
|
|
virtual bool RespectsFontStyleSmoothing() const { return false; }
|
|
|
|
|
2012-03-09 06:05:40 +04:00
|
|
|
/**
|
|
|
|
* Whether to check all font cmaps during system font fallback
|
|
|
|
*/
|
|
|
|
bool UseCmapsDuringSystemFallback();
|
|
|
|
|
2013-05-16 20:32:41 +04:00
|
|
|
/**
|
|
|
|
* Whether to render SVG glyphs within an OpenType font wrapper
|
|
|
|
*/
|
|
|
|
bool OpenTypeSVGEnabled();
|
|
|
|
|
2013-09-11 05:36:57 +04:00
|
|
|
/**
|
|
|
|
* Max character length of words in the word cache
|
|
|
|
*/
|
|
|
|
uint32_t WordCacheCharLimit();
|
|
|
|
|
2013-09-11 05:36:57 +04:00
|
|
|
/**
|
|
|
|
* Max number of entries in word cache
|
|
|
|
*/
|
|
|
|
uint32_t WordCacheMaxEntries();
|
|
|
|
|
2011-12-10 02:32:29 +04:00
|
|
|
/**
|
|
|
|
* Whether to use the SIL Graphite rendering engine
|
|
|
|
* (for fonts that include Graphite tables)
|
|
|
|
*/
|
|
|
|
bool UseGraphiteShaping();
|
|
|
|
|
2008-10-01 07:01:53 +04:00
|
|
|
// check whether format is supported on a platform or not (if unclear, returns true)
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool IsFontFormatSupported(nsIURI *aFontURI, uint32_t aFormatFlags) { return false; }
|
2007-04-02 23:06:16 +04:00
|
|
|
|
2015-02-23 01:53:32 +03:00
|
|
|
virtual bool DidRenderingDeviceReset(DeviceResetReason* aResetReason = nullptr) { return false; }
|
2014-09-24 21:12:10 +04:00
|
|
|
|
2012-03-09 06:05:24 +04:00
|
|
|
// returns a list of commonly used fonts for a given character
|
|
|
|
// these are *possible* matches, no cmap-checking is done at this level
|
2014-09-30 10:27:55 +04:00
|
|
|
virtual void GetCommonFallbackFonts(uint32_t /*aCh*/, uint32_t /*aNextCh*/,
|
2016-04-21 20:58:59 +03:00
|
|
|
Script /*aRunScript*/,
|
2012-03-09 06:05:24 +04:00
|
|
|
nsTArray<const char*>& /*aFontList*/)
|
|
|
|
{
|
|
|
|
// platform-specific override, by default do nothing
|
|
|
|
}
|
|
|
|
|
2015-04-24 22:33:35 +03:00
|
|
|
// Are we in safe mode?
|
|
|
|
static bool InSafeMode();
|
|
|
|
|
2012-08-26 05:27:28 +04:00
|
|
|
static bool OffMainThreadCompositingEnabled();
|
|
|
|
|
2016-09-28 01:34:48 +03:00
|
|
|
void UpdateCanUseHardwareVideoDecoding();
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 13:20:52 +04:00
|
|
|
|
2015-07-17 01:18:05 +03:00
|
|
|
// Returns a prioritized list of all available compositor backends.
|
|
|
|
void GetCompositorBackends(bool useAcceleration, nsTArray<mozilla::layers::LayersBackend>& aBackends);
|
|
|
|
|
2013-08-04 11:46:17 +04:00
|
|
|
/**
|
2014-02-27 06:53:27 +04:00
|
|
|
* Is it possible to use buffer rotation. Note that these
|
|
|
|
* check the preference, but also allow for the override to
|
|
|
|
* disable it using DisableBufferRotation.
|
2013-08-04 11:46:17 +04:00
|
|
|
*/
|
|
|
|
static bool BufferRotationEnabled();
|
|
|
|
static void DisableBufferRotation();
|
2013-08-09 03:30:19 +04:00
|
|
|
|
2013-09-07 07:08:36 +04:00
|
|
|
/**
|
|
|
|
* Are we going to try color management?
|
|
|
|
*/
|
|
|
|
static eCMSMode GetCMSMode();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the rendering intent for color management.
|
|
|
|
*
|
|
|
|
* If the value in the pref gfx.color_management.rendering_intent is a
|
|
|
|
* valid rendering intent as defined in gfx/qcms/qcms.h, that
|
|
|
|
* value is returned. Otherwise, -1 is returned and the embedded intent
|
|
|
|
* should be used.
|
|
|
|
*
|
|
|
|
* See bug 444014 for details.
|
|
|
|
*/
|
|
|
|
static int GetRenderingIntent();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a pixel using a cms transform in an endian-aware manner.
|
|
|
|
*
|
|
|
|
* Sets 'out' to 'in' if transform is nullptr.
|
|
|
|
*/
|
2014-10-17 15:53:15 +04:00
|
|
|
static void TransformPixel(const Color& in, Color& out, qcms_transform *transform);
|
2014-10-03 12:50:42 +04:00
|
|
|
|
2013-09-07 07:08:36 +04:00
|
|
|
/**
|
|
|
|
* Return the output device ICC profile.
|
|
|
|
*/
|
|
|
|
static qcms_profile* GetCMSOutputProfile();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the sRGB ICC profile.
|
|
|
|
*/
|
|
|
|
static qcms_profile* GetCMSsRGBProfile();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sRGB -> output device transform.
|
|
|
|
*/
|
|
|
|
static qcms_transform* GetCMSRGBTransform();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return output -> sRGB device transform.
|
|
|
|
*/
|
|
|
|
static qcms_transform* GetCMSInverseRGBTransform();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sRGBA -> output device transform.
|
|
|
|
*/
|
|
|
|
static qcms_transform* GetCMSRGBATransform();
|
|
|
|
|
2011-06-12 06:30:16 +04:00
|
|
|
virtual void FontsPrefsChanged(const char *aPref);
|
2010-05-27 09:05:30 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t GetBidiNumeralOption();
|
2011-12-06 16:39:19 +04:00
|
|
|
|
2015-11-20 07:35:15 +03:00
|
|
|
static void
|
|
|
|
FlushFontAndWordCaches();
|
|
|
|
|
2010-08-20 23:29:01 +04:00
|
|
|
/**
|
|
|
|
* Returns a 1x1 surface that can be used to create graphics contexts
|
|
|
|
* for measuring text etc as if they will be rendered to the screen
|
|
|
|
*/
|
|
|
|
gfxASurface* ScreenReferenceSurface() { return mScreenReferenceSurface; }
|
2016-05-23 22:12:10 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a 1x1 DrawTarget that can be used for measuring text etc. as
|
|
|
|
* it would measure if rendered on-screen. Guaranteed to return a
|
|
|
|
* non-null and valid DrawTarget.
|
|
|
|
*/
|
2013-10-24 19:50:26 +04:00
|
|
|
mozilla::gfx::DrawTarget* ScreenReferenceDrawTarget() { return mScreenReferenceDrawTarget; }
|
2010-08-20 23:29:01 +04:00
|
|
|
|
2013-09-25 00:45:13 +04:00
|
|
|
virtual mozilla::gfx::SurfaceFormat Optimal2DFormatForContent(gfxContentType aContent);
|
2012-05-26 08:38:17 +04:00
|
|
|
|
2013-09-25 00:45:13 +04:00
|
|
|
virtual gfxImageFormat OptimalFormatForContent(gfxContentType aContent);
|
2012-05-26 08:38:17 +04:00
|
|
|
|
2010-12-15 21:17:26 +03:00
|
|
|
virtual gfxImageFormat GetOffscreenFormat()
|
2016-01-08 07:57:38 +03:00
|
|
|
{ return mozilla::gfx::SurfaceFormat::X8R8G8B8_UINT32; }
|
2010-12-15 21:17:26 +03:00
|
|
|
|
2011-01-21 19:44:33 +03:00
|
|
|
/**
|
|
|
|
* Returns a logger if one is available and logging is enabled
|
|
|
|
*/
|
2015-10-30 01:58:24 +03:00
|
|
|
static mozilla::LogModule* GetLog(eGfxLog aWhichLog);
|
2011-01-21 19:44:33 +03:00
|
|
|
|
2015-08-27 01:37:48 +03:00
|
|
|
int GetScreenDepth() const { return mScreenDepth; }
|
|
|
|
mozilla::gfx::IntSize GetScreenSize() const { return mScreenSize; }
|
2012-05-15 23:41:20 +04:00
|
|
|
|
2013-08-03 02:50:17 +04:00
|
|
|
/**
|
|
|
|
* Return the layer debugging options to use browser-wide.
|
|
|
|
*/
|
|
|
|
mozilla::layers::DiagnosticTypes GetLayerDiagnosticTypes();
|
|
|
|
|
2015-05-07 12:07:31 +03:00
|
|
|
static mozilla::gfx::IntRect FrameCounterBounds() {
|
2013-08-22 20:54:05 +04:00
|
|
|
int bits = 16;
|
|
|
|
int sizeOfBit = 3;
|
2015-05-07 12:07:31 +03:00
|
|
|
return mozilla::gfx::IntRect(0, 0, bits * sizeOfBit, sizeOfBit);
|
2013-08-22 20:54:05 +04:00
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:37 +04:00
|
|
|
mozilla::gl::SkiaGLGlue* GetSkiaGLGlue();
|
2016-03-23 21:17:02 +03:00
|
|
|
void PurgeSkiaGPUCache();
|
|
|
|
static void PurgeSkiaFontCache();
|
2014-03-06 01:49:37 +04:00
|
|
|
|
2014-04-01 17:33:49 +04:00
|
|
|
virtual bool IsInGonkEmulator() const { return false; }
|
|
|
|
|
2014-06-06 17:51:24 +04:00
|
|
|
static bool UsesOffMainThreadCompositing();
|
|
|
|
|
2014-09-12 03:52:42 +04:00
|
|
|
bool HasEnoughTotalSystemMemoryForSkiaGL();
|
2014-12-18 19:30:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the hardware vsync source for each platform.
|
|
|
|
* Should only exist and be valid on the parent process
|
|
|
|
*/
|
|
|
|
virtual mozilla::gfx::VsyncSource* GetHardwareVsync() {
|
|
|
|
MOZ_ASSERT(mVsyncSource != nullptr);
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
return mVsyncSource;
|
|
|
|
}
|
|
|
|
|
2015-03-03 19:14:22 +03:00
|
|
|
/**
|
|
|
|
* True if layout rendering should use ASAP mode, which means
|
|
|
|
* the refresh driver and compositor should render ASAP.
|
|
|
|
* Used for talos testing purposes
|
|
|
|
*/
|
|
|
|
static bool IsInLayoutAsapMode();
|
|
|
|
|
2015-09-15 18:13:57 +03:00
|
|
|
/**
|
|
|
|
* Returns the software vsync rate to use.
|
|
|
|
*/
|
|
|
|
static int GetSoftwareVsyncRate();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not a custom vsync rate is set.
|
|
|
|
*/
|
|
|
|
static bool ForceSoftwareVsync();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the default frame rate for the refresh driver / software vsync.
|
|
|
|
*/
|
|
|
|
static int GetDefaultFrameRate();
|
|
|
|
|
2015-03-25 01:04:44 +03:00
|
|
|
/**
|
|
|
|
* Used to test which input types are handled via APZ.
|
|
|
|
*/
|
2015-04-19 23:12:14 +03:00
|
|
|
virtual bool SupportsApzWheelInput() const {
|
2015-03-25 01:04:44 +03:00
|
|
|
return false;
|
|
|
|
}
|
2015-04-19 23:12:14 +03:00
|
|
|
virtual bool SupportsApzTouchInput() const {
|
2015-03-25 01:04:44 +03:00
|
|
|
return false;
|
|
|
|
}
|
2015-09-28 21:44:36 +03:00
|
|
|
bool SupportsApzDragInput() const;
|
2015-03-25 01:04:44 +03:00
|
|
|
|
2015-05-04 13:35:18 +03:00
|
|
|
virtual void FlushContentDrawing() {}
|
2015-06-19 02:07:21 +03:00
|
|
|
|
2016-02-29 09:53:15 +03:00
|
|
|
// If a device reset has occurred, schedule any necessary paints in the
|
|
|
|
// widget. This should only be used within nsRefreshDriver.
|
|
|
|
virtual void SchedulePaintIfDeviceReset() {}
|
|
|
|
|
2015-06-19 02:07:21 +03:00
|
|
|
/**
|
|
|
|
* Helper method, creates a draw target for a specific Azure backend.
|
|
|
|
* Used by CreateOffscreenDrawTarget.
|
|
|
|
*/
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<DrawTarget>
|
2015-06-19 02:07:21 +03:00
|
|
|
CreateDrawTargetForBackend(mozilla::gfx::BackendType aBackend,
|
|
|
|
const mozilla::gfx::IntSize& aSize,
|
|
|
|
mozilla::gfx::SurfaceFormat aFormat);
|
|
|
|
|
2015-07-13 18:53:10 +03:00
|
|
|
/**
|
|
|
|
* Wrapper around gfxPrefs::PerfWarnings().
|
|
|
|
* Extracted into a function to avoid including gfxPrefs.h from this file.
|
|
|
|
*/
|
|
|
|
static bool PerfWarnings();
|
|
|
|
|
2015-07-20 00:50:35 +03:00
|
|
|
void NotifyCompositorCreated(mozilla::layers::LayersBackend aBackend);
|
|
|
|
mozilla::layers::LayersBackend GetCompositorBackend() const {
|
|
|
|
return mCompositorBackend;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:55:02 +03:00
|
|
|
virtual void CompositorUpdated() {}
|
|
|
|
|
2015-12-02 22:31:16 +03:00
|
|
|
// Plugin async drawing support.
|
|
|
|
virtual bool SupportsPluginDirectBitmapDrawing() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-23 18:22:55 +03:00
|
|
|
// Some platforms don't support CompositorOGL in an unaccelerated OpenGL
|
|
|
|
// context. These platforms should return true here.
|
|
|
|
virtual bool RequiresAcceleratedGLContextForCompositorOGL() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:41:35 +03:00
|
|
|
uint64_t GetDeviceCounter() const {
|
|
|
|
return mDeviceCounter;
|
|
|
|
}
|
|
|
|
|
2016-06-20 19:29:47 +03:00
|
|
|
/**
|
|
|
|
* Check the blocklist for a feature. Returns false if the feature is blocked
|
|
|
|
* with an appropriate message and failure ID.
|
|
|
|
* */
|
|
|
|
static bool IsGfxInfoStatusOkay(int32_t aFeature, nsCString* aOutMessage,
|
|
|
|
nsCString& aFailureId);
|
|
|
|
|
2016-07-05 04:02:24 +03:00
|
|
|
const gfxSkipChars& EmptySkipChars() const { return kEmptySkipChars; }
|
|
|
|
|
2016-08-21 06:59:11 +03:00
|
|
|
/**
|
|
|
|
* Return information on how child processes should initialize graphics
|
|
|
|
* devices.
|
|
|
|
*/
|
|
|
|
virtual void BuildContentDeviceData(mozilla::gfx::ContentDeviceData* aOut);
|
|
|
|
|
2016-08-21 06:59:11 +03:00
|
|
|
/**
|
|
|
|
* Imports settings from the GPU process. This should only be called through
|
|
|
|
* GPUProcessManager, in the UI process.
|
|
|
|
*/
|
|
|
|
virtual void ImportGPUDeviceData(const mozilla::gfx::GPUDeviceData& aData);
|
|
|
|
|
2005-11-29 23:29:45 +03:00
|
|
|
protected:
|
2010-05-27 09:05:30 +04:00
|
|
|
gfxPlatform();
|
2007-03-20 02:16:15 +03:00
|
|
|
virtual ~gfxPlatform();
|
2006-08-10 02:43:06 +04:00
|
|
|
|
2016-04-29 07:52:54 +03:00
|
|
|
virtual void InitAcceleration();
|
|
|
|
|
2016-08-21 04:25:03 +03:00
|
|
|
/**
|
|
|
|
* Called immediately before deleting the gfxPlatform object.
|
|
|
|
*/
|
|
|
|
virtual void WillShutdown();
|
|
|
|
|
2014-11-19 00:28:42 +03:00
|
|
|
/**
|
|
|
|
* Initialized hardware vsync based on each platform.
|
|
|
|
*/
|
2015-01-09 02:12:47 +03:00
|
|
|
virtual already_AddRefed<mozilla::gfx::VsyncSource> CreateHardwareVsyncSource();
|
2014-11-19 00:28:42 +03:00
|
|
|
|
2015-07-17 01:18:05 +03:00
|
|
|
// Returns whether or not layers should be accelerated by default on this platform.
|
|
|
|
virtual bool AccelerateLayersByDefault();
|
|
|
|
|
|
|
|
// Returns a prioritized list of available compositor backends for acceleration.
|
|
|
|
virtual void GetAcceleratedCompositorBackends(nsTArray<mozilla::layers::LayersBackend>& aBackends);
|
|
|
|
|
2012-07-31 00:15:39 +04:00
|
|
|
/**
|
2012-11-07 06:27:09 +04:00
|
|
|
* Initialise the preferred and fallback canvas backends
|
|
|
|
* aBackendBitmask specifies the backends which are acceptable to the caller.
|
|
|
|
* The backend used is determined by aBackendBitmask and the order specified
|
|
|
|
* by the gfx.canvas.azure.backends pref.
|
2012-07-31 00:15:39 +04:00
|
|
|
*/
|
2013-11-05 23:54:12 +04:00
|
|
|
void InitBackendPrefs(uint32_t aCanvasBitmask, mozilla::gfx::BackendType aCanvasDefault,
|
|
|
|
uint32_t aContentBitmask, mozilla::gfx::BackendType aContentDefault);
|
2012-09-17 07:23:00 +04:00
|
|
|
|
2015-08-02 23:59:33 +03:00
|
|
|
/**
|
2016-08-21 06:59:11 +03:00
|
|
|
* Content-process only. Requests device preferences from the parent process
|
|
|
|
* and updates any cached settings.
|
2015-08-02 23:59:33 +03:00
|
|
|
*/
|
2016-08-21 06:59:11 +03:00
|
|
|
void FetchAndImportContentDeviceData();
|
|
|
|
virtual void ImportContentDeviceData(const mozilla::gfx::ContentDeviceData& aData);
|
2015-08-02 23:59:33 +03:00
|
|
|
|
2016-03-01 00:41:35 +03:00
|
|
|
/**
|
|
|
|
* Increase the global device counter after a device has been removed/reset.
|
|
|
|
*/
|
|
|
|
void BumpDeviceCounter();
|
|
|
|
|
2012-07-31 00:15:39 +04:00
|
|
|
/**
|
|
|
|
* returns the first backend named in the pref gfx.canvas.azure.backends
|
2012-11-07 06:27:09 +04:00
|
|
|
* which is a component of aBackendBitmask, a bitmask of backend types
|
2012-07-31 00:15:39 +04:00
|
|
|
*/
|
2012-11-07 06:27:09 +04:00
|
|
|
static mozilla::gfx::BackendType GetCanvasBackendPref(uint32_t aBackendBitmask);
|
2012-09-17 07:23:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the first backend named in the pref gfx.content.azure.backend
|
2012-11-07 06:27:09 +04:00
|
|
|
* which is a component of aBackendBitmask, a bitmask of backend types
|
2012-09-17 07:23:00 +04:00
|
|
|
*/
|
2013-08-26 08:13:24 +04:00
|
|
|
static mozilla::gfx::BackendType GetContentBackendPref(uint32_t &aBackendBitmask);
|
2012-09-17 07:23:00 +04:00
|
|
|
|
|
|
|
/**
|
2013-11-05 23:54:12 +04:00
|
|
|
* Will return the first backend named in aBackendPrefName
|
2012-11-07 06:27:09 +04:00
|
|
|
* allowed by aBackendBitmask, a bitmask of backend types.
|
2013-08-26 08:13:24 +04:00
|
|
|
* It also modifies aBackendBitmask to only include backends that are
|
|
|
|
* allowed given the prefs.
|
2012-09-17 07:23:00 +04:00
|
|
|
*/
|
2013-11-05 23:54:12 +04:00
|
|
|
static mozilla::gfx::BackendType GetBackendPref(const char* aBackendPrefName,
|
2013-08-26 08:13:24 +04:00
|
|
|
uint32_t &aBackendBitmask);
|
2012-09-17 07:23:00 +04:00
|
|
|
/**
|
|
|
|
* Decode the backend enumberation from a string.
|
|
|
|
*/
|
2012-07-31 00:15:39 +04:00
|
|
|
static mozilla::gfx::BackendType BackendTypeForName(const nsCString& aName);
|
2012-07-25 04:45:58 +04:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
static already_AddRefed<mozilla::gfx::ScaledFont>
|
2014-01-30 11:01:16 +04:00
|
|
|
GetScaledFontForFontWithCairoSkia(mozilla::gfx::DrawTarget* aTarget, gfxFont* aFont);
|
|
|
|
|
2016-08-25 06:48:35 +03:00
|
|
|
virtual bool CanUseHardwareVideoDecoding();
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int8_t mAllowDownloadableFonts;
|
|
|
|
int8_t mGraphiteShapingEnabled;
|
2013-05-16 20:32:41 +04:00
|
|
|
int8_t mOpenTypeSVGEnabled;
|
2010-05-27 09:05:30 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int8_t mBidiNumeralOption;
|
2011-12-06 16:39:19 +04:00
|
|
|
|
2015-08-05 17:24:55 +03:00
|
|
|
// whether to always search font cmaps globally
|
2012-03-09 06:05:40 +04:00
|
|
|
// when doing system font fallback
|
2012-08-22 19:56:38 +04:00
|
|
|
int8_t mFallbackUsesCmaps;
|
2012-03-09 06:05:40 +04:00
|
|
|
|
2013-09-11 05:36:57 +04:00
|
|
|
// max character limit for words in word cache
|
|
|
|
int32_t mWordCacheCharLimit;
|
|
|
|
|
2013-09-11 05:36:57 +04:00
|
|
|
// max number of entries in word cache
|
|
|
|
int32_t mWordCacheMaxEntries;
|
|
|
|
|
2016-09-23 18:40:25 +03:00
|
|
|
uint64_t mTotalSystemMemory;
|
2014-09-12 03:52:42 +04:00
|
|
|
|
2014-12-18 19:30:06 +03:00
|
|
|
// Hardware vsync source. Only valid on parent process
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::gfx::VsyncSource> mVsyncSource;
|
2014-12-18 19:30:06 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::gfx::DrawTarget> mScreenReferenceDrawTarget;
|
2015-01-28 03:54:19 +03:00
|
|
|
|
2007-07-24 02:02:17 +04:00
|
|
|
private:
|
2012-03-22 03:14:09 +04:00
|
|
|
/**
|
|
|
|
* Start up Thebes.
|
|
|
|
*/
|
|
|
|
static void Init();
|
|
|
|
|
2016-06-20 19:29:47 +03:00
|
|
|
static void InitOpenGLConfig();
|
2013-09-07 07:08:36 +04:00
|
|
|
static void CreateCMSOutputProfile();
|
|
|
|
|
2013-11-07 14:20:08 +04:00
|
|
|
static void GetCMSOutputProfileData(void *&mem, size_t &size);
|
|
|
|
|
2013-12-11 03:10:01 +04:00
|
|
|
friend void RecordingPrefChanged(const char *aPrefName, void *aClosure);
|
2013-04-09 21:37:56 +04:00
|
|
|
|
2013-11-07 14:20:08 +04:00
|
|
|
virtual void GetPlatformCMSOutputProfile(void *&mem, size_t &size);
|
2008-09-09 01:47:26 +04:00
|
|
|
|
2015-08-07 22:37:56 +03:00
|
|
|
/**
|
|
|
|
* Calling this function will compute and set the ideal tile size for the
|
|
|
|
* platform. This will only have an effect in the parent process; child processes
|
|
|
|
* should be updated via SetTileSize to match the value computed in the parent.
|
|
|
|
*/
|
|
|
|
void ComputeTileSize();
|
|
|
|
|
2015-08-27 01:37:48 +03:00
|
|
|
/**
|
|
|
|
* This uses nsIScreenManager to determine the screen size and color depth
|
|
|
|
*/
|
|
|
|
void PopulateScreenInfo();
|
|
|
|
|
2016-04-29 07:52:54 +03:00
|
|
|
void InitCompositorAccelerationPrefs();
|
2016-10-28 05:21:34 +03:00
|
|
|
void InitGPUProcessPrefs();
|
2016-04-29 07:52:54 +03:00
|
|
|
|
2016-11-15 01:13:40 +03:00
|
|
|
static bool IsDXInterop2Blocked();
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfxASurface> mScreenReferenceSurface;
|
2013-09-07 07:08:36 +04:00
|
|
|
nsCOMPtr<nsIObserver> mSRGBOverrideObserver;
|
2011-06-12 06:30:16 +04:00
|
|
|
nsCOMPtr<nsIObserver> mFontPrefsObserver;
|
2013-11-01 17:52:06 +04:00
|
|
|
nsCOMPtr<nsIObserver> mMemoryPressureObserver;
|
2012-07-26 05:56:42 +04:00
|
|
|
|
|
|
|
// The preferred draw target backend to use for canvas
|
|
|
|
mozilla::gfx::BackendType mPreferredCanvasBackend;
|
|
|
|
// The fallback draw target backend to use for canvas, if the preferred backend fails
|
|
|
|
mozilla::gfx::BackendType mFallbackCanvasBackend;
|
2012-09-17 07:23:00 +04:00
|
|
|
// The backend to use for content
|
|
|
|
mozilla::gfx::BackendType mContentBackend;
|
2016-11-28 11:40:29 +03:00
|
|
|
// The backend to use when we need it not to be accelerated.
|
|
|
|
mozilla::gfx::BackendType mSoftwareBackend;
|
2013-05-28 02:04:37 +04:00
|
|
|
// Bitmask of backend types we can use to render content
|
|
|
|
uint32_t mContentBackendBitmask;
|
2012-07-26 05:56:42 +04:00
|
|
|
|
|
|
|
mozilla::widget::GfxInfoCollector<gfxPlatform> mAzureCanvasBackendCollector;
|
2015-03-25 01:04:44 +03:00
|
|
|
mozilla::widget::GfxInfoCollector<gfxPlatform> mApzSupportCollector;
|
2016-07-21 09:08:39 +03:00
|
|
|
mozilla::widget::GfxInfoCollector<gfxPlatform> mTilesInfoCollector;
|
2012-09-24 19:02:50 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::gfx::DrawEventRecorder> mRecorder;
|
|
|
|
RefPtr<mozilla::gl::SkiaGLGlue> mSkiaGlue;
|
2015-07-20 00:50:35 +03:00
|
|
|
|
|
|
|
// Backend that we are compositing with. NONE, if no compositor has been
|
|
|
|
// created yet.
|
|
|
|
mozilla::layers::LayersBackend mCompositorBackend;
|
2015-08-27 01:37:48 +03:00
|
|
|
|
|
|
|
int32_t mScreenDepth;
|
|
|
|
mozilla::gfx::IntSize mScreenSize;
|
2016-03-01 00:41:35 +03:00
|
|
|
|
|
|
|
// Generation number for devices that ClientLayerManagers might depend on.
|
|
|
|
uint64_t mDeviceCounter;
|
2016-07-05 04:02:24 +03:00
|
|
|
|
|
|
|
// An instance of gfxSkipChars which is empty. It is used as the
|
|
|
|
// basis for error-case iterators.
|
|
|
|
const gfxSkipChars kEmptySkipChars;
|
2005-11-29 23:29:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_H */
|