1 // Copyright 2014 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.
5 #ifndef ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
6 #define ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
8 #include "android_webview/browser/shared_renderer_state.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "cc/layers/delegated_frame_resource_collection.h"
11 #include "cc/trees/layer_tree_host_client.h"
12 #include "cc/trees/layer_tree_host_single_thread_client.h"
17 class DelegatedFrameProvider
;
18 class DelegatedRendererLayer
;
23 namespace android_webview
{
26 class ParentOutputSurface
;
28 class HardwareRenderer
: public cc::LayerTreeHostClient
,
29 public cc::LayerTreeHostSingleThreadClient
,
30 public cc::DelegatedFrameResourceCollectionClient
{
32 explicit HardwareRenderer(SharedRendererState
* state
);
33 virtual ~HardwareRenderer();
35 void DrawGL(bool stencil_enabled
,
36 int framebuffer_binding_ext
,
37 AwDrawGLInfo
* draw_info
);
39 // cc::LayerTreeHostClient overrides.
40 virtual void WillBeginMainFrame(int frame_id
) OVERRIDE
{}
41 virtual void DidBeginMainFrame() OVERRIDE
;
42 virtual void Animate(base::TimeTicks frame_begin_time
) OVERRIDE
{}
43 virtual void Layout() OVERRIDE
{}
44 virtual void ApplyScrollAndScale(const gfx::Vector2d
& scroll_delta
,
45 float page_scale
) OVERRIDE
{}
46 virtual scoped_ptr
<cc::OutputSurface
> CreateOutputSurface(
47 bool fallback
) OVERRIDE
;
48 virtual void DidInitializeOutputSurface() OVERRIDE
{}
49 virtual void WillCommit() OVERRIDE
{}
50 virtual void DidCommit() OVERRIDE
{}
51 virtual void DidCommitAndDrawFrame() OVERRIDE
{}
52 virtual void DidCompleteSwapBuffers() OVERRIDE
{}
54 // cc::LayerTreeHostSingleThreadClient overrides.
55 virtual void ScheduleComposite() OVERRIDE
{}
56 virtual void ScheduleAnimation() OVERRIDE
{}
57 virtual void DidPostSwapBuffers() OVERRIDE
{}
58 virtual void DidAbortSwapBuffers() OVERRIDE
{}
60 // cc::DelegatedFrameResourceCollectionClient overrides.
61 virtual void UnusedResourcesAreAvailable() OVERRIDE
;
64 SharedRendererState
* shared_renderer_state_
;
66 typedef void* EGLContext
;
67 EGLContext last_egl_context_
;
69 // Information about last delegated frame.
70 gfx::Size frame_size_
;
71 gfx::Vector2d scroll_offset_
;
73 // Information from draw.
76 bool stencil_enabled_
;
77 bool viewport_clip_valid_for_dcheck_
;
79 scoped_refptr
<AwGLSurface
> gl_surface_
;
81 scoped_ptr
<cc::LayerTreeHost
> layer_tree_host_
;
82 scoped_refptr
<cc::Layer
> root_layer_
;
84 scoped_refptr
<cc::DelegatedFrameResourceCollection
> resource_collection_
;
85 scoped_refptr
<cc::DelegatedFrameProvider
> frame_provider_
;
86 scoped_refptr
<cc::DelegatedRendererLayer
> delegated_layer_
;
88 // This is owned indirectly by |layer_tree_host_|.
89 ParentOutputSurface
* output_surface_
;
91 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer
);
94 } // namespace android_webview
96 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_