Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: cc/gl_renderer.h

Issue 11111005: Remove GraphicsContext3D:: stubs from cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/geometry_binding.cc ('k') | cc/gl_renderer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 21
23 namespace WebKit { 22 namespace WebKit {
24 class WebGraphicsContext3D; 23 class WebGraphicsContext3D;
25 } 24 }
26 25
27 namespace cc { 26 namespace cc {
28 27
29 class CCScopedTexture; 28 class CCScopedTexture;
30 class GeometryBinding; 29 class GeometryBinding;
31 class ScopedEnsureFramebufferAllocation; 30 class ScopedEnsureFramebufferAllocation;
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 #if DEBUG_GL_CALLS && !defined(NDEBUG) 227 #if DEBUG_GL_CALLS && !defined(NDEBUG)
229 #define GLC(context, x) (x, CCRendererGL::debugGLCall(&*context, #x, __FILE__, _ _LINE__)) 228 #define GLC(context, x) (x, CCRendererGL::debugGLCall(&*context, #x, __FILE__, _ _LINE__))
230 #else 229 #else
231 #define GLC(context, x) (x) 230 #define GLC(context, x) (x)
232 #endif 231 #endif
233 232
234 233
235 } 234 }
236 235
237 #endif 236 #endif
OLDNEW
« no previous file with comments | « cc/geometry_binding.cc ('k') | cc/gl_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698