diff options
Diffstat (limited to 'webkit/plugins/ppapi/ppb_graphics_3d_impl.h')
-rw-r--r-- | webkit/plugins/ppapi/ppb_graphics_3d_impl.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/webkit/plugins/ppapi/ppb_graphics_3d_impl.h b/webkit/plugins/ppapi/ppb_graphics_3d_impl.h index 8124979..d4a49d6 100644 --- a/webkit/plugins/ppapi/ppb_graphics_3d_impl.h +++ b/webkit/plugins/ppapi/ppb_graphics_3d_impl.h @@ -22,7 +22,7 @@ class GLES2Implementation; } // namespace gpu struct PPB_Graphics3D_Dev; -struct PPB_OpenGLES_Dev; +struct PPB_OpenGLES2_Dev; namespace webkit { namespace ppapi { @@ -34,14 +34,10 @@ class PPB_Graphics3D_Impl : public Resource { virtual ~PPB_Graphics3D_Impl(); static const PPB_Graphics3D_Dev* GetInterface(); - static const PPB_OpenGLES_Dev* GetOpenGLESInterface(); + static const PPB_OpenGLES2_Dev* GetOpenGLES2Interface(); static bool Shutdown(); - static PPB_Graphics3D_Impl* GetCurrent(); - - static void ResetCurrent(); - // Resource override. virtual PPB_Graphics3D_Impl* AsPPB_Graphics3D_Impl(); @@ -54,8 +50,6 @@ class PPB_Graphics3D_Impl : public Resource { // TODO(apatrick): Figure out the best semantics here. bool BindToInstance(PluginInstance* new_instance); - bool MakeCurrent(); - bool SwapBuffers(); unsigned GetError(); |