| Index: Source/WebCore/platform/graphics/chromium/LayerRendererChromium.h
|
| ===================================================================
|
| --- Source/WebCore/platform/graphics/chromium/LayerRendererChromium.h (revision 92714)
|
| +++ Source/WebCore/platform/graphics/chromium/LayerRendererChromium.h (working copy)
|
| @@ -122,6 +122,7 @@
|
| static void debugGLCall(GraphicsContext3D*, const char* command, const char* file, int line);
|
|
|
| const TransformationMatrix& projectionMatrix() const { return m_projectionMatrix; }
|
| + const TransformationMatrix& windowMatrix() const { return m_windowMatrix; }
|
|
|
| bool checkTextureSize(const IntSize&);
|
| int maxTextureSize() const { return m_maxTextureSize; }
|
| @@ -133,6 +134,8 @@
|
| const RenderSurfaceChromium::MaskProgram* renderSurfaceMaskProgram();
|
| const LayerTilerChromium::Program* tilerProgram();
|
| const LayerTilerChromium::ProgramSwizzle* tilerProgramSwizzle();
|
| + const LayerTilerChromium::ProgramAA* tilerProgramAA();
|
| + const LayerTilerChromium::ProgramSwizzleAA* tilerProgramSwizzleAA();
|
| const CCCanvasLayerImpl::Program* canvasLayerProgram();
|
| const CCPluginLayerImpl::Program* pluginLayerProgram();
|
| const CCVideoLayerImpl::RGBAProgram* videoLayerRGBAProgram();
|
| @@ -211,6 +214,7 @@
|
| IntPoint m_viewportScrollPosition;
|
|
|
| TransformationMatrix m_projectionMatrix;
|
| + TransformationMatrix m_windowMatrix;
|
|
|
| RefPtr<LayerChromium> m_rootLayer;
|
| OwnPtr<LayerTextureUpdater> m_rootLayerTextureUpdater;
|
| @@ -239,6 +243,8 @@
|
| OwnPtr<RenderSurfaceChromium::MaskProgram> m_renderSurfaceMaskProgram;
|
| OwnPtr<LayerTilerChromium::Program> m_tilerProgram;
|
| OwnPtr<LayerTilerChromium::ProgramSwizzle> m_tilerProgramSwizzle;
|
| + OwnPtr<LayerTilerChromium::ProgramAA> m_tilerProgramAA;
|
| + OwnPtr<LayerTilerChromium::ProgramSwizzleAA> m_tilerProgramSwizzleAA;
|
| OwnPtr<CCCanvasLayerImpl::Program> m_canvasLayerProgram;
|
| OwnPtr<CCVideoLayerImpl::RGBAProgram> m_videoLayerRGBAProgram;
|
| OwnPtr<CCVideoLayerImpl::YUVProgram> m_videoLayerYUVProgram;
|
|
|