2006-02-01 05:35:38 +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/. */
|
2006-02-01 05:35:38 +03:00
|
|
|
|
|
|
|
#ifndef GFX_WINDOWS_PLATFORM_H
|
|
|
|
#define GFX_WINDOWS_PLATFORM_H
|
|
|
|
|
2010-02-26 09:36:07 +03:00
|
|
|
|
|
|
|
/**
|
2011-02-21 16:47:32 +03:00
|
|
|
* XXX to get CAIRO_HAS_D2D_SURFACE, CAIRO_HAS_DWRITE_FONT
|
|
|
|
* and cairo_win32_scaled_font_select_font
|
2010-02-26 09:36:07 +03:00
|
|
|
*/
|
2011-02-21 16:47:32 +03:00
|
|
|
#include "cairo-win32.h"
|
2010-02-26 09:36:07 +03:00
|
|
|
|
2008-04-04 06:01:22 +04:00
|
|
|
#include "gfxFontUtils.h"
|
2006-02-15 05:48:08 +03:00
|
|
|
#include "gfxWindowsSurface.h"
|
2010-03-17 14:40:29 +03:00
|
|
|
#include "gfxFont.h"
|
2010-02-26 09:36:07 +03:00
|
|
|
#ifdef CAIRO_HAS_DWRITE_FONT
|
|
|
|
#include "gfxDWriteFonts.h"
|
|
|
|
#endif
|
2006-02-01 05:35:38 +03:00
|
|
|
#include "gfxPlatform.h"
|
2014-11-11 00:41:40 +03:00
|
|
|
#include "gfxTypes.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2015-01-28 04:09:34 +03:00
|
|
|
#include "mozilla/Atomics.h"
|
2009-01-18 23:14:14 +03:00
|
|
|
#include "nsTArray.h"
|
2006-06-10 04:21:05 +04:00
|
|
|
#include "nsDataHashtable.h"
|
2006-02-15 05:48:08 +03:00
|
|
|
|
2013-05-01 18:27:09 +04:00
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
|
2006-02-24 08:15:21 +03:00
|
|
|
#include <windows.h>
|
2010-08-27 02:26:47 +04:00
|
|
|
#include <objbase.h>
|
2006-02-24 08:15:21 +03:00
|
|
|
|
2013-03-22 23:32:56 +04:00
|
|
|
#ifdef CAIRO_HAS_D2D_SURFACE
|
|
|
|
#include <dxgi.h>
|
|
|
|
#endif
|
|
|
|
|
2013-05-10 17:26:10 +04:00
|
|
|
// This header is available in the June 2010 SDK and in the Win8 SDK
|
|
|
|
#include <d3dcommon.h>
|
2013-05-09 19:32:50 +04:00
|
|
|
// Win 8.0 SDK types we'll need when building using older sdks.
|
2013-05-10 17:26:10 +04:00
|
|
|
#if !defined(D3D_FEATURE_LEVEL_11_1) // defined in the 8.0 SDK only
|
2013-05-09 19:32:50 +04:00
|
|
|
#define D3D_FEATURE_LEVEL_11_1 static_cast<D3D_FEATURE_LEVEL>(0xb100)
|
|
|
|
#define D3D_FL9_1_REQ_TEXTURE2D_U_OR_V_DIMENSION 2048
|
|
|
|
#define D3D_FL9_3_REQ_TEXTURE2D_U_OR_V_DIMENSION 4096
|
|
|
|
#endif
|
|
|
|
|
2013-08-04 11:46:17 +04:00
|
|
|
namespace mozilla {
|
2014-11-11 00:41:40 +03:00
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
|
|
|
}
|
2013-08-04 11:46:17 +04:00
|
|
|
namespace layers {
|
|
|
|
class DeviceManagerD3D9;
|
2014-07-30 17:38:46 +04:00
|
|
|
class ReadbackManagerD3D11;
|
2013-08-04 11:46:17 +04:00
|
|
|
}
|
|
|
|
}
|
2014-06-19 04:57:51 +04:00
|
|
|
struct IDirect3DDevice9;
|
|
|
|
struct ID3D11Device;
|
|
|
|
struct IDXGIAdapter1;
|
2013-05-01 18:27:09 +04:00
|
|
|
|
2014-11-11 00:41:40 +03:00
|
|
|
/**
|
|
|
|
* Utility to get a Windows HDC from a Moz2D DrawTarget. If the DrawTarget is
|
|
|
|
* not backed by a HDC this will get the HDC for the screen device context
|
|
|
|
* instead.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class MOZ_STACK_CLASS DCFromDrawTarget final
|
2014-11-11 00:41:40 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DCFromDrawTarget(mozilla::gfx::DrawTarget& aDrawTarget);
|
2010-03-15 12:34:25 +03:00
|
|
|
|
2014-11-11 00:41:40 +03:00
|
|
|
~DCFromDrawTarget() {
|
|
|
|
if (mNeedsRelease) {
|
|
|
|
ReleaseDC(nullptr, mDC);
|
2011-02-19 23:48:33 +03:00
|
|
|
} else {
|
2014-11-11 00:41:40 +03:00
|
|
|
RestoreDC(mDC, -1);
|
2011-02-19 23:48:33 +03:00
|
|
|
}
|
2010-03-15 12:34:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
operator HDC () {
|
2014-11-11 00:41:40 +03:00
|
|
|
return mDC;
|
2010-03-15 12:34:25 +03:00
|
|
|
}
|
|
|
|
|
2014-11-11 00:41:40 +03:00
|
|
|
private:
|
|
|
|
HDC mDC;
|
|
|
|
bool mNeedsRelease;
|
2010-03-15 12:34:25 +03:00
|
|
|
};
|
|
|
|
|
2011-05-11 04:30:20 +04:00
|
|
|
// ClearType parameters set by running ClearType tuner
|
|
|
|
struct ClearTypeParameterInfo {
|
|
|
|
ClearTypeParameterInfo() :
|
|
|
|
gamma(-1), pixelStructure(-1), clearTypeLevel(-1), enhancedContrast(-1)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
nsString displayName; // typically just 'DISPLAY1'
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t gamma;
|
|
|
|
int32_t pixelStructure;
|
|
|
|
int32_t clearTypeLevel;
|
|
|
|
int32_t enhancedContrast;
|
2011-05-11 04:30:20 +04:00
|
|
|
};
|
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxWindowsPlatform : public gfxPlatform {
|
2006-02-01 05:35:38 +03:00
|
|
|
public:
|
2012-03-19 23:20:18 +04:00
|
|
|
enum TextRenderingMode {
|
|
|
|
TEXT_RENDERING_NO_CLEARTYPE,
|
|
|
|
TEXT_RENDERING_NORMAL,
|
|
|
|
TEXT_RENDERING_GDI_CLASSIC,
|
|
|
|
TEXT_RENDERING_COUNT
|
|
|
|
};
|
|
|
|
|
2006-02-01 05:35:38 +03:00
|
|
|
gfxWindowsPlatform();
|
2006-02-24 08:15:21 +03:00
|
|
|
virtual ~gfxWindowsPlatform();
|
2006-02-01 05:35:38 +03:00
|
|
|
static gfxWindowsPlatform *GetPlatform() {
|
|
|
|
return (gfxWindowsPlatform*) gfxPlatform::GetPlatform();
|
|
|
|
}
|
|
|
|
|
2009-10-07 18:13:40 +04:00
|
|
|
virtual gfxPlatformFontList* CreatePlatformFontList();
|
|
|
|
|
2014-02-09 12:04:38 +04:00
|
|
|
virtual already_AddRefed<gfxASurface>
|
|
|
|
CreateOffscreenSurface(const IntSize& size,
|
2015-03-21 19:28:04 +03:00
|
|
|
gfxContentType contentType) override;
|
2012-06-26 06:43:31 +04:00
|
|
|
|
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);
|
2006-02-01 05:35:38 +03:00
|
|
|
|
2009-07-09 03:34:02 +04:00
|
|
|
enum RenderMode {
|
|
|
|
/* Use GDI and windows surfaces */
|
|
|
|
RENDER_GDI = 0,
|
|
|
|
|
|
|
|
/* Use 32bpp image surfaces and call StretchDIBits */
|
|
|
|
RENDER_IMAGE_STRETCH32,
|
|
|
|
|
|
|
|
/* Use 32bpp image surfaces, and do 32->24 conversion before calling StretchDIBits */
|
|
|
|
RENDER_IMAGE_STRETCH24,
|
|
|
|
|
2010-02-26 09:36:07 +03:00
|
|
|
/* Use Direct2D rendering */
|
|
|
|
RENDER_DIRECT2D,
|
|
|
|
|
2009-07-09 03:34:02 +04:00
|
|
|
/* max */
|
|
|
|
RENDER_MODE_MAX
|
|
|
|
};
|
|
|
|
|
2013-12-18 22:09:10 +04:00
|
|
|
int GetScreenDepth() const;
|
|
|
|
|
2009-07-09 03:34:02 +04:00
|
|
|
RenderMode GetRenderMode() { return mRenderMode; }
|
|
|
|
void SetRenderMode(RenderMode rmode) { mRenderMode = rmode; }
|
|
|
|
|
2010-09-16 02:16:09 +04:00
|
|
|
/**
|
|
|
|
* Updates render mode with relation to the current preferences and
|
|
|
|
* available devices.
|
|
|
|
*/
|
|
|
|
void UpdateRenderMode();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verifies a D2D device is present and working, will attempt to create one
|
|
|
|
* it is non-functional or non-existant.
|
|
|
|
*
|
|
|
|
* \param aAttemptForce Attempt to force D2D cairo device creation by using
|
|
|
|
* cairo device creation routines.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
void VerifyD2DDevice(bool aAttemptForce);
|
2010-09-16 02:16:09 +04:00
|
|
|
|
2013-03-22 23:32:56 +04:00
|
|
|
#ifdef CAIRO_HAS_D2D_SURFACE
|
|
|
|
HRESULT CreateDevice(nsRefPtr<IDXGIAdapter1> &adapter1, int featureLevelIndex);
|
|
|
|
#endif
|
|
|
|
|
2013-04-01 13:10:28 +04:00
|
|
|
/**
|
|
|
|
* Return the resolution scaling factor to convert between "logical" or
|
|
|
|
* "screen" pixels as used by Windows (dependent on the DPI scaling option
|
|
|
|
* in the Display control panel) and actual device pixels.
|
|
|
|
*/
|
2013-12-15 00:40:55 +04:00
|
|
|
double GetDPIScale();
|
2013-04-01 13:10:28 +04:00
|
|
|
|
2010-02-24 20:57:57 +03:00
|
|
|
nsresult GetFontList(nsIAtom *aLangGroup,
|
2006-02-01 05:35:38 +03:00
|
|
|
const nsACString& aGenericFamily,
|
2009-01-18 23:14:14 +03:00
|
|
|
nsTArray<nsString>& aListOfFonts);
|
2006-02-01 05:35:38 +03:00
|
|
|
|
2006-06-15 08:47:23 +04:00
|
|
|
nsresult UpdateFontList();
|
|
|
|
|
2014-09-30 10:27:55 +04:00
|
|
|
virtual void GetCommonFallbackFonts(uint32_t aCh, uint32_t aNextCh,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aRunScript,
|
2012-03-09 06:05:24 +04:00
|
|
|
nsTArray<const char*>& aFontList);
|
|
|
|
|
2008-03-13 13:32:50 +03:00
|
|
|
nsresult GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
|
|
|
|
2014-06-06 10:09:23 +04:00
|
|
|
gfxFontGroup *CreateFontGroup(const mozilla::FontFamilyList& aFontFamilyList,
|
2008-10-01 07:01:53 +04:00
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Look up a local platform font using the full font face name (needed to support @font-face src local() )
|
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic);
|
2008-10-01 07:01:53 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Activate a platform font (needed to support @font-face src url() )
|
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic,
|
|
|
|
const uint8_t* aFontData,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aLength);
|
2008-10-01 07:01:53 +04:00
|
|
|
|
2015-06-18 07:09:16 +03:00
|
|
|
virtual bool CanUseHardwareVideoDecoding() override;
|
|
|
|
|
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);
|
2007-04-02 23:06:16 +04:00
|
|
|
|
2015-02-23 01:53:32 +03:00
|
|
|
virtual bool DidRenderingDeviceReset(DeviceResetReason* aResetReason = nullptr);
|
2014-09-24 21:12:10 +04:00
|
|
|
|
2010-05-27 09:05:30 +04:00
|
|
|
// ClearType is not always enabled even when available (e.g. Windows XP)
|
|
|
|
// if either of these prefs are enabled and apply, use ClearType rendering
|
2011-09-29 10:19:26 +04:00
|
|
|
bool UseClearTypeForDownloadableFonts();
|
|
|
|
bool UseClearTypeAlways();
|
2010-05-27 09:05:30 +04:00
|
|
|
|
2013-12-11 13:46:41 +04:00
|
|
|
static void GetDLLVersion(char16ptr_t aDLLPath, nsAString& aVersion);
|
2011-01-14 15:57:17 +03:00
|
|
|
|
2011-05-11 04:30:20 +04:00
|
|
|
// returns ClearType tuning information for each display
|
|
|
|
static void GetCleartypeParams(nsTArray<ClearTypeParameterInfo>& aParams);
|
|
|
|
|
2011-06-12 06:30:16 +04:00
|
|
|
virtual void FontsPrefsChanged(const char *aPref);
|
2010-05-27 09:05:30 +04:00
|
|
|
|
2011-06-12 06:30:16 +04:00
|
|
|
void SetupClearTypeParams();
|
2011-04-21 10:29:50 +04:00
|
|
|
|
2010-02-26 09:36:07 +03:00
|
|
|
#ifdef CAIRO_HAS_DWRITE_FONT
|
2010-12-02 13:37:17 +03:00
|
|
|
IDWriteFactory *GetDWriteFactory() { return mDWriteFactory; }
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool DWriteEnabled() { return mUseDirectWrite; }
|
2011-04-21 10:29:50 +04:00
|
|
|
inline DWRITE_MEASURING_MODE DWriteMeasuringMode() { return mMeasuringMode; }
|
2011-12-06 16:39:19 +04:00
|
|
|
IDWriteTextAnalyzer *GetDWriteAnalyzer() { return mDWriteAnalyzer; }
|
2012-03-19 23:20:18 +04:00
|
|
|
|
|
|
|
IDWriteRenderingParams *GetRenderingParams(TextRenderingMode aRenderMode)
|
|
|
|
{ return mRenderingParams[aRenderMode]; }
|
2010-08-16 11:15:03 +04:00
|
|
|
#else
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool DWriteEnabled() { return false; }
|
2010-02-26 09:36:07 +03:00
|
|
|
#endif
|
2013-11-22 02:07:56 +04:00
|
|
|
void OnDeviceManagerDestroy(mozilla::layers::DeviceManagerD3D9* aDeviceManager);
|
2013-08-04 11:46:17 +04:00
|
|
|
mozilla::layers::DeviceManagerD3D9* GetD3D9DeviceManager();
|
|
|
|
IDirect3DDevice9* GetD3D9Device();
|
2015-07-03 00:44:53 +03:00
|
|
|
ID3D10Device1 *GetD3D10Device() { return mD3D10Device; }
|
2013-05-01 18:27:09 +04:00
|
|
|
ID3D11Device *GetD3D11Device();
|
2014-09-15 01:51:27 +04:00
|
|
|
ID3D11Device *GetD3D11ContentDevice();
|
2015-05-13 14:42:32 +03:00
|
|
|
// Device to be used on the ImageBridge thread
|
|
|
|
ID3D11Device *GetD3D11ImageBridgeDevice();
|
2010-02-26 09:36:07 +03:00
|
|
|
|
2015-03-31 08:21:15 +03:00
|
|
|
// Create a D3D11 device to be used for DXVA decoding.
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<ID3D11Device> CreateD3D11DecoderDevice();
|
2015-03-31 08:21:15 +03:00
|
|
|
|
2014-07-30 17:38:46 +04:00
|
|
|
mozilla::layers::ReadbackManagerD3D11* GetReadbackManager();
|
|
|
|
|
2011-03-02 04:00:33 +03:00
|
|
|
static bool IsOptimus();
|
|
|
|
|
2015-01-21 06:36:01 +03:00
|
|
|
bool IsWARP() { return mIsWARP; }
|
2015-06-27 00:06:49 +03:00
|
|
|
bool DoesD3D11TextureSharingWork() { return mDoesD3D11TextureSharingWork; }
|
2015-01-21 06:36:01 +03:00
|
|
|
|
2015-04-19 23:12:14 +03:00
|
|
|
bool SupportsApzWheelInput() const override {
|
2015-03-25 01:04:44 +03:00
|
|
|
return true;
|
|
|
|
}
|
2015-04-19 23:12:14 +03:00
|
|
|
bool SupportsApzTouchInput() const override;
|
2015-03-25 01:04:44 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual already_AddRefed<mozilla::gfx::VsyncSource> CreateHardwareVsyncSource() override;
|
2015-01-28 04:09:34 +03:00
|
|
|
static mozilla::Atomic<size_t> sD3D11MemoryUsed;
|
2015-02-03 11:34:33 +03:00
|
|
|
static mozilla::Atomic<size_t> sD3D9MemoryUsed;
|
2015-02-05 06:20:14 +03:00
|
|
|
static mozilla::Atomic<size_t> sD3D9SurfaceImageUsed;
|
|
|
|
static mozilla::Atomic<size_t> sD3D9SharedTextureUsed;
|
2015-01-28 04:09:34 +03:00
|
|
|
|
2009-07-09 03:34:02 +04:00
|
|
|
protected:
|
|
|
|
RenderMode mRenderMode;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int8_t mUseClearTypeForDownloadableFonts;
|
|
|
|
int8_t mUseClearTypeAlways;
|
2010-05-27 09:05:30 +04:00
|
|
|
|
2006-02-15 05:48:08 +03:00
|
|
|
private:
|
|
|
|
void Init();
|
2014-09-15 01:51:27 +04:00
|
|
|
void InitD3D11Devices();
|
2013-05-01 18:27:09 +04:00
|
|
|
IDXGIAdapter1 *GetDXGIAdapter();
|
2015-05-09 00:12:32 +03:00
|
|
|
bool IsDeviceReset(HRESULT hr, DeviceResetReason* aReason);
|
2006-02-15 05:48:08 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mUseDirectWrite;
|
|
|
|
bool mUsingGDIFonts;
|
2010-09-16 02:16:09 +04:00
|
|
|
|
2010-02-26 09:36:07 +03:00
|
|
|
#ifdef CAIRO_HAS_DWRITE_FONT
|
|
|
|
nsRefPtr<IDWriteFactory> mDWriteFactory;
|
2011-12-06 16:39:19 +04:00
|
|
|
nsRefPtr<IDWriteTextAnalyzer> mDWriteAnalyzer;
|
2012-03-19 23:20:18 +04:00
|
|
|
nsRefPtr<IDWriteRenderingParams> mRenderingParams[TEXT_RENDERING_COUNT];
|
2011-04-21 10:29:50 +04:00
|
|
|
DWRITE_MEASURING_MODE mMeasuringMode;
|
2010-08-11 03:59:51 +04:00
|
|
|
#endif
|
2013-05-01 18:27:09 +04:00
|
|
|
mozilla::RefPtr<IDXGIAdapter1> mAdapter;
|
2013-08-04 11:46:17 +04:00
|
|
|
nsRefPtr<mozilla::layers::DeviceManagerD3D9> mDeviceManager;
|
2015-07-03 00:44:53 +03:00
|
|
|
mozilla::RefPtr<ID3D10Device1> mD3D10Device;
|
2013-05-01 18:27:09 +04:00
|
|
|
mozilla::RefPtr<ID3D11Device> mD3D11Device;
|
2014-09-15 01:51:27 +04:00
|
|
|
mozilla::RefPtr<ID3D11Device> mD3D11ContentDevice;
|
2015-05-13 14:42:32 +03:00
|
|
|
mozilla::RefPtr<ID3D11Device> mD3D11ImageBridgeDevice;
|
2013-05-01 18:27:09 +04:00
|
|
|
bool mD3D11DeviceInitialized;
|
2014-07-30 17:38:46 +04:00
|
|
|
mozilla::RefPtr<mozilla::layers::ReadbackManagerD3D11> mD3D11ReadbackManager;
|
2015-01-21 06:36:01 +03:00
|
|
|
bool mIsWARP;
|
2015-05-09 00:12:32 +03:00
|
|
|
bool mHasDeviceReset;
|
2015-06-18 07:09:16 +03:00
|
|
|
bool mDoesD3D11TextureSharingWork;
|
2015-05-09 00:12:32 +03:00
|
|
|
DeviceResetReason mDeviceResetReason;
|
2010-02-26 09:36:07 +03:00
|
|
|
|
2013-11-07 14:20:08 +04:00
|
|
|
virtual void GetPlatformCMSOutputProfile(void* &mem, size_t &size);
|
2006-02-01 05:35:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_WINDOWS_PLATFORM_H */
|