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

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

Issue 23451023: cc: Tell the LayerTreeHost that the filter context is needed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: delegated-filters: add header Created 7 years, 3 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/output/software_renderer.cc ('k') | cc/quads/render_pass_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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_RENDER_PASS_H_ 5 #ifndef CC_QUADS_RENDER_PASS_H_
6 #define CC_QUADS_RENDER_PASS_H_ 6 #define CC_QUADS_RENDER_PASS_H_
7 7
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/containers/hash_tables.h" 12 #include "base/containers/hash_tables.h"
13 #include "cc/base/cc_export.h" 13 #include "cc/base/cc_export.h"
14 #include "cc/base/scoped_ptr_vector.h" 14 #include "cc/base/scoped_ptr_vector.h"
15 #include "skia/ext/refptr.h" 15 #include "skia/ext/refptr.h"
16 #include "third_party/skia/include/core/SkColor.h"
17 #include "third_party/skia/include/core/SkImageFilter.h"
18 #include "ui/gfx/rect.h" 16 #include "ui/gfx/rect.h"
19 #include "ui/gfx/rect_f.h" 17 #include "ui/gfx/rect_f.h"
20 #include "ui/gfx/transform.h" 18 #include "ui/gfx/transform.h"
21 19
22 namespace base { 20 namespace base {
23 class Value; 21 class Value;
24 }; 22 };
25 23
26 namespace cc { 24 namespace cc {
27 25
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 #error define a hash function for your compiler 135 #error define a hash function for your compiler
138 #endif // COMPILER 136 #endif // COMPILER
139 } // namespace BASE_HASH_NAMESPACE 137 } // namespace BASE_HASH_NAMESPACE
140 138
141 namespace cc { 139 namespace cc {
142 typedef ScopedPtrVector<RenderPass> RenderPassList; 140 typedef ScopedPtrVector<RenderPass> RenderPassList;
143 typedef base::hash_map<RenderPass::Id, RenderPass*> RenderPassIdHashMap; 141 typedef base::hash_map<RenderPass::Id, RenderPass*> RenderPassIdHashMap;
144 } // namespace cc 142 } // namespace cc
145 143
146 #endif // CC_QUADS_RENDER_PASS_H_ 144 #endif // CC_QUADS_RENDER_PASS_H_
OLDNEW
« no previous file with comments | « cc/output/software_renderer.cc ('k') | cc/quads/render_pass_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698