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
|
// Copyright (c) 2011 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 WEBKIT_PLUGINS_PPAPI_PPB_CONTEXT_3D_IMPL_H_
#define WEBKIT_PLUGINS_PPAPI_PPB_CONTEXT_3D_IMPL_H_
#include "base/memory/scoped_callback_factory.h"
#include "base/memory/scoped_ptr.h"
#include "ppapi/thunk/ppb_context_3d_api.h"
#include "webkit/plugins/ppapi/plugin_delegate.h"
#include "webkit/plugins/ppapi/resource.h"
struct PPB_Context3DTrusted_Dev;
namespace gpu {
class CommandBuffer;
namespace gles2 {
class GLES2CmdHelper;
class GLES2Implementation;
} // namespace gles2
} // namespace gpu
namespace webkit {
namespace ppapi {
class PPB_Surface3D_Impl;
class PPB_Context3D_Impl : public Resource,
public ::ppapi::thunk::PPB_Context3D_API {
public:
virtual ~PPB_Context3D_Impl();
static PP_Resource Create(PP_Instance instance,
PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
static PP_Resource CreateRaw(PP_Instance instance,
PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
// ResourceObjectBase override.
virtual ::ppapi::thunk::PPB_Context3D_API* AsPPB_Context3D_API();
// PPB_Context3D_API implementation.
virtual int32_t GetAttrib(int32_t attribute, int32_t* value) OVERRIDE;
virtual int32_t BindSurfaces(PP_Resource draw, PP_Resource read) OVERRIDE;
virtual int32_t GetBoundSurfaces(PP_Resource* draw,
PP_Resource* read) OVERRIDE;
virtual PP_Bool InitializeTrusted(int32_t size) OVERRIDE;
virtual PP_Bool GetRingBuffer(int* shm_handle,
uint32_t* shm_size) OVERRIDE;
virtual PP_Context3DTrustedState GetState() OVERRIDE;
virtual PP_Bool Flush(int32_t put_offset) OVERRIDE;
virtual PP_Context3DTrustedState FlushSync(int32_t put_offset) OVERRIDE;
virtual int32_t CreateTransferBuffer(uint32_t size) OVERRIDE;
virtual PP_Bool DestroyTransferBuffer(int32_t id) OVERRIDE;
virtual PP_Bool GetTransferBuffer(int32_t id,
int* shm_handle,
uint32_t* shm_size) OVERRIDE;
virtual PP_Context3DTrustedState FlushSyncFast(
int32_t put_offset,
int32_t last_known_get) OVERRIDE;
virtual void* MapTexSubImage2DCHROMIUM(GLenum target,
GLint level,
GLint xoffset,
GLint yoffset,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
GLenum access) OVERRIDE;
virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) OVERRIDE;
virtual gpu::gles2::GLES2Implementation* GetGLES2Impl() OVERRIDE;
int32_t BindSurfacesImpl(PPB_Surface3D_Impl* draw, PPB_Surface3D_Impl* read);
gpu::gles2::GLES2Implementation* gles2_impl() {
return gles2_impl_.get();
}
// Possibly NULL if initialization fails.
PluginDelegate::PlatformContext3D* platform_context() {
return platform_context_.get();
}
private:
explicit PPB_Context3D_Impl(PluginInstance* instance);
bool Init(PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
bool InitRaw(PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
bool CreateImplementation();
void Destroy();
void OnContextLost();
// Plugin instance this context is associated with.
PluginInstance* instance_;
// PluginDelegate's 3D Context. Responsible for providing the command buffer.
// Possibly NULL.
scoped_ptr<PluginDelegate::PlatformContext3D> platform_context_;
scoped_ptr<gpu::gles2::GLES2CmdHelper> helper_;
int32 transfer_buffer_id_;
scoped_ptr<gpu::gles2::GLES2Implementation> gles2_impl_;
PPB_Surface3D_Impl* draw_surface_;
PPB_Surface3D_Impl* read_surface_;
base::ScopedCallbackFactory<PPB_Context3D_Impl> callback_factory_;
DISALLOW_COPY_AND_ASSIGN(PPB_Context3D_Impl);
};
} // namespace ppapi
} // namespace webkit
#endif // WEBKIT_PLUGINS_PPAPI_PPB_CONTEXT_3D_IMPL_H_
|