blob: 422a525051827b80d8be5c34deec3cf77ae282ed (
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
|
// 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 CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_
#define CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "base/threading/platform_thread.h"
#include "base/time.h"
#include "cc/output/begin_frame_args.h"
#include "cc/output/output_surface.h"
#include "ipc/ipc_sync_message_filter.h"
namespace base {
class TaskRunner;
}
namespace IPC {
class ForwardingMessageFilter;
class Message;
}
namespace cc {
class CompositorFrame;
class CompositorFrameAck;
}
namespace content {
class WebGraphicsContext3DCommandBufferImpl;
// This class can be created only on the main thread, but then becomes pinned
// to a fixed thread when bindToClient is called.
class CompositorOutputSurface
: NON_EXPORTED_BASE(public cc::OutputSurface),
NON_EXPORTED_BASE(public base::NonThreadSafe) {
public:
static IPC::ForwardingMessageFilter* CreateFilter(
base::TaskRunner* target_task_runner);
CompositorOutputSurface(int32 routing_id,
WebGraphicsContext3DCommandBufferImpl* context3d,
cc::SoftwareOutputDevice* software,
bool use_swap_compositor_frame_message);
virtual ~CompositorOutputSurface();
// cc::OutputSurface implementation.
virtual bool BindToClient(cc::OutputSurfaceClient* client) OVERRIDE;
virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE;
#if defined(OS_ANDROID)
virtual void SetNeedsBeginFrame(bool enable) OVERRIDE;
#endif
// TODO(epenner): This seems out of place here and would be a better fit
// int CompositorThread after it is fully refactored (http://crbug/170828)
virtual void UpdateSmoothnessTakesPriority(bool prefer_smoothness) OVERRIDE;
protected:
virtual void OnSwapAck(const cc::CompositorFrameAck& ack);
private:
class CompositorOutputSurfaceProxy :
public base::RefCountedThreadSafe<CompositorOutputSurfaceProxy> {
public:
explicit CompositorOutputSurfaceProxy(
CompositorOutputSurface* output_surface)
: output_surface_(output_surface) {}
void ClearOutputSurface() { output_surface_ = NULL; }
void OnMessageReceived(const IPC::Message& message) {
if (output_surface_)
output_surface_->OnMessageReceived(message);
}
private:
friend class base::RefCountedThreadSafe<CompositorOutputSurfaceProxy>;
~CompositorOutputSurfaceProxy() {}
CompositorOutputSurface* output_surface_;
DISALLOW_COPY_AND_ASSIGN(CompositorOutputSurfaceProxy);
};
void OnMessageReceived(const IPC::Message& message);
void OnUpdateVSyncParameters(
base::TimeTicks timebase, base::TimeDelta interval);
#if defined(OS_ANDROID)
void OnBeginFrame(const cc::BeginFrameArgs& args);
#endif
bool Send(IPC::Message* message);
bool use_swap_compositor_frame_message_;
scoped_refptr<IPC::ForwardingMessageFilter> output_surface_filter_;
scoped_refptr<CompositorOutputSurfaceProxy> output_surface_proxy_;
scoped_refptr<IPC::SyncMessageFilter> message_sender_;
int routing_id_;
bool prefers_smoothness_;
base::PlatformThreadHandle main_thread_handle_;
};
} // namespace content
#endif // CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_
|