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 #ifndef CCRendererGL_h | 5 #ifndef CC_GL_RENDERER_H_ |
6 #define CCRendererGL_h | 6 #define CC_GL_RENDERER_H_ |
7 | 7 |
8 #include "cc/cc_export.h" | 8 #include "cc/cc_export.h" |
9 #include "cc/checkerboard_draw_quad.h" | 9 #include "cc/checkerboard_draw_quad.h" |
10 #include "cc/debug_border_draw_quad.h" | 10 #include "cc/debug_border_draw_quad.h" |
11 #include "cc/direct_renderer.h" | 11 #include "cc/direct_renderer.h" |
12 #include "cc/io_surface_draw_quad.h" | 12 #include "cc/io_surface_draw_quad.h" |
13 #include "cc/render_pass_draw_quad.h" | 13 #include "cc/render_pass_draw_quad.h" |
14 #include "cc/renderer.h" | 14 #include "cc/renderer.h" |
15 #include "cc/solid_color_draw_quad.h" | 15 #include "cc/solid_color_draw_quad.h" |
16 #include "cc/tile_draw_quad.h" | 16 #include "cc/tile_draw_quad.h" |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 | 227 |
228 #if DEBUG_GL_CALLS && !defined(NDEBUG) | 228 #if DEBUG_GL_CALLS && !defined(NDEBUG) |
229 #define GLC(context, x) (x, GLRenderer::debugGLCall(&*context, #x, __FILE__, __L
INE__)) | 229 #define GLC(context, x) (x, GLRenderer::debugGLCall(&*context, #x, __FILE__, __L
INE__)) |
230 #else | 230 #else |
231 #define GLC(context, x) (x) | 231 #define GLC(context, x) (x) |
232 #endif | 232 #endif |
233 | 233 |
234 | 234 |
235 } | 235 } |
236 | 236 |
237 #endif | 237 #endif // CC_GL_RENDERER_H_ |
OLD | NEW |