| OLD | NEW |
| 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/quads/shared_quad_state.h" | 10 #include "cc/quads/shared_quad_state.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 DrawQuad(); | 107 DrawQuad(); |
| 108 | 108 |
| 109 void SetAll(const SharedQuadState* shared_quad_state, | 109 void SetAll(const SharedQuadState* shared_quad_state, |
| 110 Material material, | 110 Material material, |
| 111 gfx::Rect rect, | 111 gfx::Rect rect, |
| 112 gfx::Rect opaque_rect, | 112 gfx::Rect opaque_rect, |
| 113 gfx::Rect visible_rect, | 113 gfx::Rect visible_rect, |
| 114 bool needs_blending); | 114 bool needs_blending); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } | 117 } // namespace cc |
| 118 | 118 |
| 119 #endif // CC_QUADS_DRAW_QUAD_H_ | 119 #endif // CC_QUADS_DRAW_QUAD_H_ |
| OLD | NEW |