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

Side by Side Diff: cc/quads/draw_quad.h

Issue 1271843005: cc: Remove code for drawing checkerboard quads, it's not used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rm-checkers: sizes Created 5 years, 4 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
« no previous file with comments | « cc/quads/checkerboard_draw_quad.cc ('k') | cc/quads/draw_quad.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_QUADS_DRAW_QUAD_H_ 5 #ifndef CC_QUADS_DRAW_QUAD_H_
6 #define CC_QUADS_DRAW_QUAD_H_ 6 #define CC_QUADS_DRAW_QUAD_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "cc/base/cc_export.h" 9 #include "cc/base/cc_export.h"
10 #include "cc/base/resource_id.h" 10 #include "cc/base/resource_id.h"
(...skipping 17 matching lines...) Expand all
28 // the "content space", which is the arbitrary space in which the quad's 28 // the "content space", which is the arbitrary space in which the quad's
29 // geometry is defined (generally related to the layer that produced the quad, 29 // geometry is defined (generally related to the layer that produced the quad,
30 // e.g. the geometry space for PictureLayerImpls or the layer's coordinate space 30 // e.g. the geometry space for PictureLayerImpls or the layer's coordinate space
31 // for most other layers). There is also the "target space", which is the space, 31 // for most other layers). There is also the "target space", which is the space,
32 // in "physical" pixels, of the render target where the quads is drawn. The 32 // in "physical" pixels, of the render target where the quads is drawn. The
33 // quad's transform maps the content space to the target space. 33 // quad's transform maps the content space to the target space.
34 class CC_EXPORT DrawQuad { 34 class CC_EXPORT DrawQuad {
35 public: 35 public:
36 enum Material { 36 enum Material {
37 INVALID, 37 INVALID,
38 CHECKERBOARD,
39 DEBUG_BORDER, 38 DEBUG_BORDER,
40 IO_SURFACE_CONTENT, 39 IO_SURFACE_CONTENT,
41 PICTURE_CONTENT, 40 PICTURE_CONTENT,
42 RENDER_PASS, 41 RENDER_PASS,
43 SOLID_COLOR, 42 SOLID_COLOR,
44 STREAM_VIDEO_CONTENT, 43 STREAM_VIDEO_CONTENT,
45 SURFACE_CONTENT, 44 SURFACE_CONTENT,
46 TEXTURE_CONTENT, 45 TEXTURE_CONTENT,
47 TILED_CONTENT, 46 TILED_CONTENT,
48 YUV_VIDEO_CONTENT, 47 YUV_VIDEO_CONTENT,
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 const gfx::Rect& rect, 136 const gfx::Rect& rect,
138 const gfx::Rect& opaque_rect, 137 const gfx::Rect& opaque_rect,
139 const gfx::Rect& visible_rect, 138 const gfx::Rect& visible_rect,
140 bool needs_blending); 139 bool needs_blending);
141 virtual void ExtendValue(base::trace_event::TracedValue* value) const = 0; 140 virtual void ExtendValue(base::trace_event::TracedValue* value) const = 0;
142 }; 141 };
143 142
144 } // namespace cc 143 } // namespace cc
145 144
146 #endif // CC_QUADS_DRAW_QUAD_H_ 145 #endif // CC_QUADS_DRAW_QUAD_H_
OLDNEW
« no previous file with comments | « cc/quads/checkerboard_draw_quad.cc ('k') | cc/quads/draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698