Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: ppapi/shared_impl/graphics_3d_impl.h

Issue 7687005: Create ppapi_proxy.dll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/shared_impl/function_group_base.h ('k') | ppapi/shared_impl/host_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ 5 #ifndef PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_
6 #define PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ 6 #define PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "ppapi/c/pp_completion_callback.h" 10 #include "ppapi/c/pp_completion_callback.h"
11 #include "ppapi/shared_impl/ppapi_shared_export.h"
11 #include "ppapi/thunk/ppb_graphics_3d_api.h" 12 #include "ppapi/thunk/ppb_graphics_3d_api.h"
12 13
13 namespace gpu { 14 namespace gpu {
14 class CommandBuffer; 15 class CommandBuffer;
15 namespace gles2 { 16 namespace gles2 {
16 class GLES2CmdHelper; 17 class GLES2CmdHelper;
17 class GLES2Implementation; 18 class GLES2Implementation;
18 } // namespace gles2 19 } // namespace gles2
19 } // namespace gpu. 20 } // namespace gpu.
20 21
21 namespace ppapi { 22 namespace ppapi {
22 23
23 class Graphics3DImpl : public thunk::PPB_Graphics3D_API { 24 class PPAPI_SHARED_EXPORT Graphics3DImpl : public thunk::PPB_Graphics3D_API {
24 public: 25 public:
25 // PPB_Graphics3D_API implementation. 26 // PPB_Graphics3D_API implementation.
26 virtual int32_t GetAttribs(int32_t* attrib_list) OVERRIDE; 27 virtual int32_t GetAttribs(int32_t* attrib_list) OVERRIDE;
27 virtual int32_t SetAttribs(int32_t* attrib_list) OVERRIDE; 28 virtual int32_t SetAttribs(int32_t* attrib_list) OVERRIDE;
28 virtual int32_t ResizeBuffers(int32_t width, int32_t height) OVERRIDE; 29 virtual int32_t ResizeBuffers(int32_t width, int32_t height) OVERRIDE;
29 virtual int32_t SwapBuffers(PP_CompletionCallback callback) OVERRIDE; 30 virtual int32_t SwapBuffers(PP_CompletionCallback callback) OVERRIDE;
30 31
31 gpu::gles2::GLES2Implementation* gles2_impl() { 32 gpu::gles2::GLES2Implementation* gles2_impl() {
32 return gles2_impl_.get(); 33 return gles2_impl_.get();
33 } 34 }
(...skipping 21 matching lines...) Expand all
55 // Callback that needs to be executed when swap-buffers is completed. 56 // Callback that needs to be executed when swap-buffers is completed.
56 PP_CompletionCallback swap_callback_; 57 PP_CompletionCallback swap_callback_;
57 58
58 DISALLOW_COPY_AND_ASSIGN(Graphics3DImpl); 59 DISALLOW_COPY_AND_ASSIGN(Graphics3DImpl);
59 }; 60 };
60 61
61 } // namespace ppapi 62 } // namespace ppapi
62 63
63 #endif // PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_ 64 #endif // PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_
64 65
OLDNEW
« no previous file with comments | « ppapi/shared_impl/function_group_base.h ('k') | ppapi/shared_impl/host_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698