diff options
Diffstat (limited to 'gfx/ipc/GPUParent.cpp')
-rw-r--r-- | gfx/ipc/GPUParent.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gfx/ipc/GPUParent.cpp b/gfx/ipc/GPUParent.cpp index 7d8a3a4349..c634dd56fb 100644 --- a/gfx/ipc/GPUParent.cpp +++ b/gfx/ipc/GPUParent.cpp @@ -28,7 +28,6 @@ #include "ProcessUtils.h" #include "VsyncBridgeParent.h" #if defined(XP_WIN) -# include "DeviceManagerD3D9.h" # include "mozilla/gfx/DeviceManagerDx.h" #endif #ifdef MOZ_WIDGET_GTK @@ -86,7 +85,6 @@ GPUParent::Init(base::ProcessId aParentPid, gfxPlatform::InitMoz2DLogging(); #if defined(XP_WIN) DeviceManagerDx::Init(); - DeviceManagerD3D9::Init(); #endif if (NS_FAILED(NS_InitMinimalXPCOM())) { @@ -145,7 +143,6 @@ GPUParent::RecvInit(nsTArray<GfxPrefSetting>&& prefs, // Inherit device preferences. gfxConfig::Inherit(Feature::HW_COMPOSITING, devicePrefs.hwCompositing()); gfxConfig::Inherit(Feature::D3D11_COMPOSITING, devicePrefs.d3d11Compositing()); - gfxConfig::Inherit(Feature::D3D9_COMPOSITING, devicePrefs.d3d9Compositing()); gfxConfig::Inherit(Feature::OPENGL_COMPOSITING, devicePrefs.oglCompositing()); gfxConfig::Inherit(Feature::DIRECT2D, devicePrefs.useD2D1()); @@ -237,7 +234,6 @@ bool GPUParent::RecvGetDeviceStatus(GPUDeviceData* aOut) { CopyFeatureChange(Feature::D3D11_COMPOSITING, &aOut->d3d11Compositing()); - CopyFeatureChange(Feature::D3D9_COMPOSITING, &aOut->d3d9Compositing()); CopyFeatureChange(Feature::OPENGL_COMPOSITING, &aOut->oglCompositing()); #if defined(XP_WIN) @@ -350,7 +346,6 @@ GPUParent::ActorDestroy(ActorDestroyReason aWhy) Factory::ShutDown(); #if defined(XP_WIN) DeviceManagerDx::Shutdown(); - DeviceManagerD3D9::Shutdown(); #endif LayerTreeOwnerTracker::Shutdown(); gfxVars::Shutdown(); |