| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 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. | |
| 4 | |
| 5 #ifndef PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ | |
| 6 #define PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "ppapi/c/pp_completion_callback.h" | |
| 11 #include "ppapi/thunk/ppb_graphics_3d_api.h" | |
| 12 | |
| 13 namespace gpu { | |
| 14 class CommandBuffer; | |
| 15 namespace gles2 { | |
| 16 class GLES2CmdHelper; | |
| 17 class GLES2Implementation; | |
| 18 } // namespace gles2 | |
| 19 } // namespace gpu. | |
| 20 | |
| 21 namespace ppapi { | |
| 22 | |
| 23 class Graphics3DImpl : public thunk::PPB_Graphics3D_API { | |
| 24 public: | |
| 25 // PPB_Graphics3D_API implementation. | |
| 26 virtual int32_t GetAttribs(int32_t* attrib_list) OVERRIDE; | |
| 27 virtual int32_t SetAttribs(int32_t* attrib_list) OVERRIDE; | |
| 28 virtual int32_t SwapBuffers(PP_CompletionCallback callback) OVERRIDE; | |
| 29 | |
| 30 gpu::gles2::GLES2Implementation* gles2_impl() { | |
| 31 return gles2_impl_.get(); | |
| 32 } | |
| 33 | |
| 34 // Sends swap-buffers notification to the plugin. | |
| 35 void SwapBuffersACK(int32_t pp_error); | |
| 36 | |
| 37 protected: | |
| 38 Graphics3DImpl(); | |
| 39 virtual ~Graphics3DImpl(); | |
| 40 | |
| 41 virtual gpu::CommandBuffer* GetCommandBuffer() = 0; | |
| 42 virtual int32 DoSwapBuffers() = 0; | |
| 43 | |
| 44 bool HasPendingSwap() { return swap_callback_.func != NULL; } | |
| 45 bool CreateGLES2Impl(int32 command_buffer_size, | |
| 46 int32 transfer_buffer_size); | |
| 47 void DestroyGLES2Impl(); | |
| 48 | |
| 49 private: | |
| 50 int32 transfer_buffer_id_; | |
| 51 scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; | |
| 52 scoped_ptr<gpu::gles2::GLES2Implementation> gles2_impl_; | |
| 53 | |
| 54 // Callback that needs to be executed when swap-buffers is completed. | |
| 55 PP_CompletionCallback swap_callback_; | |
| 56 | |
| 57 DISALLOW_COPY_AND_ASSIGN(Graphics3DImpl); | |
| 58 }; | |
| 59 | |
| 60 } // namespace ppapi | |
| 61 | |
| 62 #endif // PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ | |
| 63 | |
| OLD | NEW |