OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ | 5 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ |
6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ | 6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "native_client/src/include/nacl_macros.h" | 9 #include "native_client/src/include/nacl_macros.h" |
10 #include "native_client/src/shared/ppapi_proxy/plugin_resource.h" | 10 #include "native_client/src/shared/ppapi_proxy/plugin_resource.h" |
11 #include "ppapi/c/pp_graphics_3d.h" | 11 #include "ppapi/c/pp_graphics_3d.h" |
12 #include "ppapi/c/ppb_graphics_3d.h" | 12 #include "ppapi/c/ppb_graphics_3d.h" |
13 #include "ppapi/c/ppb_opengles2.h" | 13 #include "ppapi/c/ppb_opengles2.h" |
14 #include "ppapi/c/dev/ppb_opengles2ext_dev.h" | |
15 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
16 | 15 |
17 namespace gpu { | 16 namespace gpu { |
18 class CommandBuffer; | 17 class CommandBuffer; |
19 class TransferBuffer; | 18 class TransferBuffer; |
20 namespace gles2 { | 19 namespace gles2 { |
21 class GLES2CmdHelper; | 20 class GLES2CmdHelper; |
22 class GLES2Implementation; | 21 class GLES2Implementation; |
23 } // namespace gles2 | 22 } // namespace gles2 |
24 } // namespace gpu | 23 } // namespace gpu |
25 | 24 |
26 namespace ppapi_proxy { | 25 namespace ppapi_proxy { |
27 | 26 |
28 // Implements the plugin (i.e., .nexe) side of the PPB_Graphics3D interface. | 27 // Implements the plugin (i.e., .nexe) side of the PPB_Graphics3D interface. |
29 class PluginGraphics3D : public PluginResource { | 28 class PluginGraphics3D : public PluginResource { |
30 public: | 29 public: |
31 PluginGraphics3D(); | 30 PluginGraphics3D(); |
32 virtual ~PluginGraphics3D(); | 31 virtual ~PluginGraphics3D(); |
33 | 32 |
34 static const PPB_Graphics3D* GetInterface(); | 33 static const PPB_Graphics3D* GetInterface(); |
35 static const PPB_OpenGLES2* GetOpenGLESInterface(); | 34 static const PPB_OpenGLES2* GetOpenGLESInterface(); |
36 static const PPB_OpenGLES2InstancedArrays_Dev* | |
37 GetOpenGLESInstancedArraysInterface(); | |
38 static const PPB_OpenGLES2FramebufferBlit_Dev* | |
39 GetOpenGLESFramebufferBlitInterface(); | |
40 static const PPB_OpenGLES2FramebufferMultisample_Dev* | |
41 GetOpenGLESFramebufferMultisampleInterface(); | |
42 static const PPB_OpenGLES2ChromiumEnableFeature_Dev* | |
43 GetOpenGLESChromiumEnableFeatureInterface(); | |
44 static const PPB_OpenGLES2ChromiumMapSub_Dev* | |
45 GetOpenGLESChromiumMapSubInterface(); | |
46 | 35 |
47 virtual bool InitFromBrowserResource(PP_Resource graphics3d_id); | 36 virtual bool InitFromBrowserResource(PP_Resource graphics3d_id); |
48 | 37 |
49 gpu::gles2::GLES2Implementation* impl() { | 38 gpu::gles2::GLES2Implementation* impl() { |
50 return gles2_implementation_.get(); | 39 return gles2_implementation_.get(); |
51 } | 40 } |
52 | 41 |
53 int32_t SwapBuffers(PP_Resource graphics3d_id, | 42 int32_t SwapBuffers(PP_Resource graphics3d_id, |
54 struct PP_CompletionCallback callback); | 43 struct PP_CompletionCallback callback); |
55 | 44 |
(...skipping 26 matching lines...) Expand all Loading... |
82 static gpu::gles2::GLES2Implementation* implFromResourceSlow( | 71 static gpu::gles2::GLES2Implementation* implFromResourceSlow( |
83 PP_Resource context); | 72 PP_Resource context); |
84 | 73 |
85 IMPLEMENT_RESOURCE(PluginGraphics3D); | 74 IMPLEMENT_RESOURCE(PluginGraphics3D); |
86 NACL_DISALLOW_COPY_AND_ASSIGN(PluginGraphics3D); | 75 NACL_DISALLOW_COPY_AND_ASSIGN(PluginGraphics3D); |
87 }; | 76 }; |
88 | 77 |
89 } // namespace ppapi_proxy | 78 } // namespace ppapi_proxy |
90 | 79 |
91 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ | 80 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GRAPHICS_3D_H_ |
OLD | NEW |