[email protected] | 0fb2500 | 2012-10-12 07:20:02 | [diff] [blame] | 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 | ||||
3 | // found in the LICENSE file. | ||||
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 4 | |
[email protected] | 8fcbaa37 | 2012-11-05 04:12:41 | [diff] [blame] | 5 | #ifndef CC_RENDER_PASS_SINK_H_ |
6 | #define CC_RENDER_PASS_SINK_H_ | ||||
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 7 | |
8 | #include "base/memory/scoped_ptr.h" | ||||
[email protected] | 52347c84 | 2012-11-02 21:06:20 | [diff] [blame] | 9 | #include "cc/cc_export.h" |
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 10 | |
11 | namespace cc { | ||||
12 | |||||
[email protected] | 96baf3e | 2012-10-22 23:09:55 | [diff] [blame] | 13 | class RenderPass; |
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 14 | |
[email protected] | 52347c84 | 2012-11-02 21:06:20 | [diff] [blame] | 15 | class CC_EXPORT RenderPassSink { |
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 16 | public: |
[email protected] | 96baf3e | 2012-10-22 23:09:55 | [diff] [blame] | 17 | virtual void appendRenderPass(scoped_ptr<RenderPass>) = 0; |
[email protected] | cd57cc5a | 2012-10-12 22:43:41 | [diff] [blame] | 18 | }; |
19 | |||||
20 | } | ||||
[email protected] | 8fcbaa37 | 2012-11-05 04:12:41 | [diff] [blame] | 21 | #endif // CC_RENDER_PASS_SINK_H_ |