OLD | NEW |
1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 #ifndef CCRendererGL_h | 6 #ifndef CCRendererGL_h |
7 #define CCRendererGL_h | 7 #define CCRendererGL_h |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "CCCheckerboardDrawQuad.h" | 10 #include "CCCheckerboardDrawQuad.h" |
11 #include "CCDebugBorderDrawQuad.h" | 11 #include "CCDebugBorderDrawQuad.h" |
12 #include "CCDirectRenderer.h" | 12 #include "CCDirectRenderer.h" |
13 #include "CCIOSurfaceDrawQuad.h" | 13 #include "CCIOSurfaceDrawQuad.h" |
14 #include "CCRenderPassDrawQuad.h" | 14 #include "CCRenderPassDrawQuad.h" |
15 #include "CCRenderer.h" | 15 #include "CCRenderer.h" |
16 #include "CCSolidColorDrawQuad.h" | 16 #include "CCSolidColorDrawQuad.h" |
17 #include "CCStreamVideoDrawQuad.h" | 17 #include "CCStreamVideoDrawQuad.h" |
18 #include "CCTextureDrawQuad.h" | 18 #include "CCTextureDrawQuad.h" |
19 #include "CCTileDrawQuad.h" | 19 #include "CCTileDrawQuad.h" |
20 #include "CCYUVVideoDrawQuad.h" | 20 #include "CCYUVVideoDrawQuad.h" |
21 #include "Extensions3DChromium.h" | |
22 #include <wtf/PassOwnPtr.h> | 21 #include <wtf/PassOwnPtr.h> |
23 | 22 |
24 namespace WebKit { | 23 namespace WebKit { |
25 class WebGraphicsContext3D; | 24 class WebGraphicsContext3D; |
26 } | 25 } |
27 | 26 |
28 namespace cc { | 27 namespace cc { |
29 | 28 |
30 class CCScopedTexture; | 29 class CCScopedTexture; |
31 class GeometryBinding; | 30 class GeometryBinding; |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 #if DEBUG_GL_CALLS && !defined ( NDEBUG ) | 226 #if DEBUG_GL_CALLS && !defined ( NDEBUG ) |
228 #define GLC(context, x) (x, CCRendererGL::debugGLCall(&*context, #x, __FILE__, _
_LINE__)) | 227 #define GLC(context, x) (x, CCRendererGL::debugGLCall(&*context, #x, __FILE__, _
_LINE__)) |
229 #else | 228 #else |
230 #define GLC(context, x) (x) | 229 #define GLC(context, x) (x) |
231 #endif | 230 #endif |
232 | 231 |
233 | 232 |
234 } | 233 } |
235 | 234 |
236 #endif | 235 #endif |
OLD | NEW |