OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright | |
9 * notice, this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright | |
11 * notice, this list of conditions and the following disclaimer in the | |
12 * documentation and/or other materials provided with the distribution. | |
13 * | |
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 #ifndef CC_DELEGATING_RENDERER_H_ | |
27 #define CC_DELEGATING_RENDERER_H_ | |
28 | |
29 #include "base/memory/scoped_ptr.h" | |
30 #include "cc/cc_export.h" | |
31 #include "cc/renderer.h" | |
32 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h" | |
33 | |
34 namespace cc { | |
35 | |
36 class ResourceProvider; | |
37 | |
38 class CC_EXPORT DelegatingRenderer : public Renderer, | |
39 public WebKit::WebGraphicsContext3D::WebGraphicsContextLostCallback | |
piman
2012/12/07 22:37:35
NON_EXPORTED_BASE
danakj
2012/12/07 22:41:01
k
| |
40 { | |
41 public: | |
42 static scoped_ptr<DelegatingRenderer> Create( | |
43 RendererClient* client, ResourceProvider* resource_provider); | |
44 virtual ~DelegatingRenderer(); | |
45 | |
46 virtual const RendererCapabilities& capabilities() const OVERRIDE; | |
47 | |
48 virtual void drawFrame(RenderPassList& render_passes_in_draw_order, | |
49 RenderPassIdHashMap& render_passes_by_id) OVERRIDE; | |
50 | |
51 virtual void finish() OVERRIDE {} | |
52 | |
53 virtual bool swapBuffers() OVERRIDE; | |
54 | |
55 virtual void getFramebufferPixels(void *pixels, | |
56 const gfx::Rect& rect) OVERRIDE; | |
57 | |
58 virtual void receiveCompositorFrameAck(const CompositorFrameAck&) OVERRIDE; | |
59 | |
60 virtual bool isContextLost() OVERRIDE; | |
61 | |
62 virtual void setVisible(bool) OVERRIDE; | |
63 | |
64 virtual void sendManagedMemoryStats(size_t bytes_visible, | |
65 size_t bytes_visible_and_nearby, | |
66 size_t bytes_allocated) OVERRIDE {} | |
67 | |
68 // WebGraphicsContext3D::WebGraphicsContextLostCallback implementation. | |
69 virtual void onContextLost() OVERRIDE; | |
70 | |
71 private: | |
72 DelegatingRenderer(RendererClient* client, | |
73 ResourceProvider* resource_provider); | |
74 bool Initialize(); | |
75 | |
76 ResourceProvider* resource_provider_; | |
77 RendererCapabilities capabilities_; | |
78 bool visible_; | |
79 | |
80 DISALLOW_COPY_AND_ASSIGN(DelegatingRenderer); | |
81 }; | |
82 | |
83 } // namespace cc | |
84 | |
85 #endif // CC_DELEGATING_RENDERER_H_ | |
OLD | NEW |