blob: 267576fce77e7aeb57cb89bf84ef4fb63e02a8f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_
#define UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_
#pragma once
#include "base/compiler_specific.h"
#include "base/memory/singleton.h"
#include "base/memory/ref_counted.h"
#include "ui/gfx/compositor/compositor.h"
#include "ui/gfx/size.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayer.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerTreeView.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerTreeViewClient.h"
namespace gfx {
class Rect;
class GLContext;
class GLSurface;
class GLShareGroup;
}
namespace ui {
class COMPOSITOR_EXPORT SharedResourcesCC
: NON_EXPORTED_BASE(public SharedResources) {
public:
static SharedResourcesCC* GetInstance();
virtual gfx::ScopedMakeCurrent* GetScopedMakeCurrent() OVERRIDE;
virtual void* GetDisplay() OVERRIDE;
gfx::GLShareGroup* GetShareGroup();
private:
friend struct DefaultSingletonTraits<SharedResourcesCC>;
SharedResourcesCC();
virtual ~SharedResourcesCC();
bool Initialize();
void Destroy();
bool initialized_;
scoped_refptr<gfx::GLContext> context_;
scoped_refptr<gfx::GLSurface> surface_;
DISALLOW_COPY_AND_ASSIGN(SharedResourcesCC);
};
class COMPOSITOR_EXPORT TextureCC : public Texture {
public:
TextureCC();
// Texture implementation.
virtual void SetCanvas(const SkCanvas& canvas,
const gfx::Point& origin,
const gfx::Size& overall_size) OVERRIDE;
virtual void Draw(const ui::TextureDrawParams& params,
const gfx::Rect& clip_bounds_in_texture) OVERRIDE;
virtual void Update() = 0;
unsigned int texture_id() const { return texture_id_; }
bool flipped() const { return flipped_; }
const gfx::Size& size() const { return size_; }
protected:
unsigned int texture_id_;
bool flipped_;
gfx::Size size_;
DISALLOW_COPY_AND_ASSIGN(TextureCC);
};
class COMPOSITOR_EXPORT CompositorCC
: public Compositor,
NON_EXPORTED_BASE(public WebKit::WebLayerTreeViewClient) {
public:
CompositorCC(CompositorDelegate* delegate,
gfx::AcceleratedWidget widget,
const gfx::Size& size);
virtual ~CompositorCC();
static void Initialize(bool useThread);
static void Terminate();
protected:
// Compositor implementation.
virtual Texture* CreateTexture() OVERRIDE;
virtual void Blur(const gfx::Rect& bounds) OVERRIDE;
virtual void ScheduleDraw() OVERRIDE;
virtual void OnNotifyStart(bool clear) OVERRIDE;
virtual void OnNotifyEnd() OVERRIDE;
virtual void OnWidgetSizeChanged() OVERRIDE;
virtual void OnRootLayerChanged() OVERRIDE;
virtual void DrawTree() OVERRIDE;
virtual bool CompositesAsynchronously() OVERRIDE;
virtual bool ReadPixels(SkBitmap* bitmap, const gfx::Rect& bounds) OVERRIDE;
// WebLayerTreeViewClient implementation.
// TODO(jamesr): Remove this override once upstream declaration is removed and
// rolled into DEPS
virtual void animateAndLayout(double frameBeginTime);
virtual void updateAnimations(double frameBeginTime);
virtual void layout();
virtual void applyScrollAndScale(const WebKit::WebSize& scrollDelta,
float scaleFactor);
virtual void applyScrollDelta(const WebKit::WebSize&);
virtual WebKit::WebGraphicsContext3D* createContext3D();
virtual void didCompleteSwapBuffers();
virtual void didRebindGraphicsContext(bool success);
virtual void scheduleComposite();
private:
gfx::AcceleratedWidget widget_;
WebKit::WebLayer root_web_layer_;
WebKit::WebLayerTreeView host_;
DISALLOW_COPY_AND_ASSIGN(CompositorCC);
};
} // namespace ui
#endif // UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_
|