Revert of Enabling audio quality test on mac. (patchset #1 id:1 of https://codereview...
[chromium-blink-merge.git] / android_webview / browser / hardware_renderer.h
blob9189b18e5a120a75689114e9e820d25ef48262de
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/parent_compositor_draw_constraints.h"
9 #include "android_webview/browser/shared_renderer_state.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "cc/layers/delegated_frame_resource_collection.h"
12 #include "cc/trees/layer_tree_host_client.h"
13 #include "cc/trees/layer_tree_host_single_thread_client.h"
15 struct AwDrawGLInfo;
17 namespace cc {
18 class DelegatedFrameProvider;
19 class DelegatedRendererLayer;
20 class Layer;
21 class LayerTreeHost;
24 namespace android_webview {
26 class AwGLSurface;
27 class ParentOutputSurface;
29 class HardwareRenderer : public cc::LayerTreeHostClient,
30 public cc::LayerTreeHostSingleThreadClient,
31 public cc::DelegatedFrameResourceCollectionClient {
32 public:
33 explicit HardwareRenderer(SharedRendererState* state);
34 virtual ~HardwareRenderer();
36 void DrawGL(bool stencil_enabled,
37 int framebuffer_binding_ext,
38 AwDrawGLInfo* draw_info);
39 void CommitFrame();
41 // cc::LayerTreeHostClient overrides.
42 virtual void WillBeginMainFrame(int frame_id) OVERRIDE {}
43 virtual void DidBeginMainFrame() OVERRIDE;
44 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE {}
45 virtual void Layout() OVERRIDE {}
46 virtual void ApplyViewportDeltas(const gfx::Vector2d& inner_delta,
47 const gfx::Vector2d& outer_delta,
48 float page_scale,
49 float top_controls_delta) OVERRIDE {}
50 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
51 float page_scale,
52 float top_controls_delta) OVERRIDE {}
53 virtual void RequestNewOutputSurface(bool fallback) OVERRIDE;
54 virtual void DidInitializeOutputSurface() OVERRIDE {}
55 virtual void WillCommit() OVERRIDE {}
56 virtual void DidCommit() OVERRIDE {}
57 virtual void DidCommitAndDrawFrame() OVERRIDE {}
58 virtual void DidCompleteSwapBuffers() OVERRIDE {}
60 // cc::LayerTreeHostSingleThreadClient overrides.
61 virtual void DidPostSwapBuffers() OVERRIDE {}
62 virtual void DidAbortSwapBuffers() OVERRIDE {}
64 // cc::DelegatedFrameResourceCollectionClient overrides.
65 virtual void UnusedResourcesAreAvailable() OVERRIDE;
67 private:
68 void SetFrameData();
70 SharedRendererState* shared_renderer_state_;
72 typedef void* EGLContext;
73 EGLContext last_egl_context_;
75 scoped_ptr<DrawGLInput> committed_input_;
77 // Information about last delegated frame.
78 gfx::Size frame_size_;
79 gfx::Vector2d scroll_offset_;
81 // Information from draw.
82 gfx::Size viewport_;
83 gfx::Rect clip_;
84 bool stencil_enabled_;
85 bool viewport_clip_valid_for_dcheck_;
87 scoped_refptr<AwGLSurface> gl_surface_;
89 scoped_ptr<cc::LayerTreeHost> layer_tree_host_;
90 scoped_refptr<cc::Layer> root_layer_;
92 scoped_refptr<cc::DelegatedFrameResourceCollection> resource_collection_;
93 scoped_refptr<cc::DelegatedFrameProvider> frame_provider_;
94 scoped_refptr<cc::DelegatedRendererLayer> delegated_layer_;
96 // This is owned indirectly by |layer_tree_host_|.
97 ParentOutputSurface* output_surface_;
99 ParentCompositorDrawConstraints draw_constraints_;
101 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer);
104 } // namespace android_webview
106 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_