From 8ab27731dc9ee22d7fbcb11fb3d380d9da8a7a75 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Fri, 25 Apr 2014 14:00:52 +0200 Subject: [PATCH] Bug 993004 - Fix missing #include on a CLOSED TREE --- gfx/layers/d3d11/CompositorD3D11.h | 1 + gfx/layers/d3d9/CompositorD3D9.h | 1 + gfx/layers/opengl/CompositorOGL.h | 1 + 3 files changed, 3 insertions(+) diff --git a/gfx/layers/d3d11/CompositorD3D11.h b/gfx/layers/d3d11/CompositorD3D11.h index df6f08e27238..8eaa046c2baf 100644 --- a/gfx/layers/d3d11/CompositorD3D11.h +++ b/gfx/layers/d3d11/CompositorD3D11.h @@ -7,6 +7,7 @@ #define MOZILLA_GFX_COMPOSITORD3D11_H #include "mozilla/gfx/2D.h" +#include "gfx2DGlue.h" #include "mozilla/layers/Compositor.h" #include "TextureD3D11.h" #include diff --git a/gfx/layers/d3d9/CompositorD3D9.h b/gfx/layers/d3d9/CompositorD3D9.h index b504d189e99e..21a3e014bef5 100644 --- a/gfx/layers/d3d9/CompositorD3D9.h +++ b/gfx/layers/d3d9/CompositorD3D9.h @@ -7,6 +7,7 @@ #define MOZILLA_GFX_COMPOSITORD3D9_H #include "mozilla/gfx/2D.h" +#include "gfx2DGlue.h" #include "mozilla/layers/Compositor.h" #include "mozilla/layers/TextureD3D9.h" #include "DeviceManagerD3D9.h" diff --git a/gfx/layers/opengl/CompositorOGL.h b/gfx/layers/opengl/CompositorOGL.h index a9ff98d6a93d..97b6c14bdcab 100644 --- a/gfx/layers/opengl/CompositorOGL.h +++ b/gfx/layers/opengl/CompositorOGL.h @@ -6,6 +6,7 @@ #ifndef MOZILLA_GFX_COMPOSITOROGL_H #define MOZILLA_GFX_COMPOSITOROGL_H +#include "gfx2DGlue.h" #include "GLContextTypes.h" // for GLContext, etc #include "GLDefs.h" // for GLuint, LOCAL_GL_TEXTURE_2D, etc #include "OGLShaderProgram.h" // for ShaderProgramOGL, etc