OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ | 5 #ifndef WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ |
6 #define WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ | 6 #define WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "gfx/size.h" | 10 #include "gfx/size.h" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 // PluginDelegate's 3D Context. Responsible for providing the command buffer. | 80 // PluginDelegate's 3D Context. Responsible for providing the command buffer. |
81 scoped_ptr<PluginDelegate::PlatformContext3D> platform_context_; | 81 scoped_ptr<PluginDelegate::PlatformContext3D> platform_context_; |
82 | 82 |
83 // GLES2 Implementation instance. Owned by the platform context's GGL context. | 83 // GLES2 Implementation instance. Owned by the platform context's GGL context. |
84 gpu::gles2::GLES2Implementation* gles2_implementation_; | 84 gpu::gles2::GLES2Implementation* gles2_implementation_; |
85 }; | 85 }; |
86 | 86 |
87 } // namespace pepper | 87 } // namespace pepper |
88 | 88 |
89 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ | 89 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_GRAPHICS_3D_H_ |
90 | |
OLD | NEW |