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 : |
| 39 public Renderer, |
| 40 public NON_EXPORTED_BASE( |
| 41 WebKit::WebGraphicsContext3D::WebGraphicsContextLostCallback) |
| 42 { |
| 43 public: |
| 44 static scoped_ptr<DelegatingRenderer> Create( |
| 45 RendererClient* client, ResourceProvider* resource_provider); |
| 46 virtual ~DelegatingRenderer(); |
| 47 |
| 48 virtual const RendererCapabilities& capabilities() const OVERRIDE; |
| 49 |
| 50 virtual void drawFrame(RenderPassList& render_passes_in_draw_order, |
| 51 RenderPassIdHashMap& render_passes_by_id) OVERRIDE; |
| 52 |
| 53 virtual void finish() OVERRIDE {} |
| 54 |
| 55 virtual bool swapBuffers() OVERRIDE; |
| 56 |
| 57 virtual void getFramebufferPixels(void *pixels, |
| 58 const gfx::Rect& rect) OVERRIDE; |
| 59 |
| 60 virtual void receiveCompositorFrameAck(const CompositorFrameAck&) OVERRIDE; |
| 61 |
| 62 virtual bool isContextLost() OVERRIDE; |
| 63 |
| 64 virtual void setVisible(bool) OVERRIDE; |
| 65 |
| 66 virtual void sendManagedMemoryStats(size_t bytes_visible, |
| 67 size_t bytes_visible_and_nearby, |
| 68 size_t bytes_allocated) OVERRIDE {} |
| 69 |
| 70 // WebGraphicsContext3D::WebGraphicsContextLostCallback implementation. |
| 71 virtual void onContextLost() OVERRIDE; |
| 72 |
| 73 private: |
| 74 DelegatingRenderer(RendererClient* client, |
| 75 ResourceProvider* resource_provider); |
| 76 bool Initialize(); |
| 77 |
| 78 ResourceProvider* resource_provider_; |
| 79 RendererCapabilities capabilities_; |
| 80 bool visible_; |
| 81 |
| 82 DISALLOW_COPY_AND_ASSIGN(DelegatingRenderer); |
| 83 }; |
| 84 |
| 85 } // namespace cc |
| 86 |
| 87 #endif // CC_DELEGATING_RENDERER_H_ |
OLD | NEW |