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

Side by Side Diff: cc/gl_renderer.h

Issue 12472028: Part 1 of cc/ directory shuffles: base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
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 #ifndef CC_GL_RENDERER_H_ 5 #ifndef CC_GL_RENDERER_H_
6 #define CC_GL_RENDERER_H_ 6 #define CC_GL_RENDERER_H_
7 7
8 #include "cc/cc_export.h" 8 #include "cc/base/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/gl_renderer_draw_cache.h" 12 #include "cc/gl_renderer_draw_cache.h"
13 #include "cc/io_surface_draw_quad.h" 13 #include "cc/io_surface_draw_quad.h"
14 #include "cc/render_pass_draw_quad.h" 14 #include "cc/render_pass_draw_quad.h"
15 #include "cc/renderer.h" 15 #include "cc/renderer.h"
16 #include "cc/solid_color_draw_quad.h" 16 #include "cc/solid_color_draw_quad.h"
17 #include "cc/tile_draw_quad.h" 17 #include "cc/tile_draw_quad.h"
18 #include "cc/yuv_video_draw_quad.h" 18 #include "cc/yuv_video_draw_quad.h"
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 #if DEBUG_GL_CALLS && !defined(NDEBUG) 309 #if DEBUG_GL_CALLS && !defined(NDEBUG)
310 #define GLC(context, x) \ 310 #define GLC(context, x) \
311 (x, GLRenderer::DebugGLCall (&* context, #x, __FILE__, __LINE__)) 311 (x, GLRenderer::DebugGLCall (&* context, #x, __FILE__, __LINE__))
312 #else 312 #else
313 #define GLC(context, x) (x) 313 #define GLC(context, x) (x)
314 #endif 314 #endif
315 315
316 } 316 }
317 317
318 #endif // CC_GL_RENDERER_H_ 318 #endif // CC_GL_RENDERER_H_
OLDNEW
« cc/cc.gyp ('K') | « cc/gl_frame_data.h ('k') | cc/gl_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698