Index: mojo/public/platform/native/gles2_thunks.cc |
diff --git a/mojo/public/platform/native/gles2_thunks.cc b/mojo/public/platform/native/gles2_thunks.cc |
index a8c00a1aebb867839b2591904f5d235fa6e04e3c..365fac95da1b46109130e04f18a1932ad7f724e2 100644 |
--- a/mojo/public/platform/native/gles2_thunks.cc |
+++ b/mojo/public/platform/native/gles2_thunks.cc |
@@ -11,7 +11,6 @@ |
extern "C" { |
static MojoGLES2ControlThunks g_control_thunks = {0}; |
-static MojoGLES2ImplThunks g_impl_thunks = {0}; |
MojoGLES2Context MojoGLES2CreateContext(MojoHandle handle, |
MojoGLES2ContextLost lost_callback, |
@@ -47,14 +46,6 @@ void* MojoGLES2GetContextSupport(MojoGLES2Context context) { |
return g_control_thunks.GLES2GetContextSupport(context); |
} |
-#define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \ |
- ReturnType gl##Function PARAMETERS { \ |
- assert(g_impl_thunks.Function); \ |
- return g_impl_thunks.Function ARGUMENTS; \ |
- } |
-#include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" |
-#undef VISIT_GL_CALL |
- |
extern "C" THUNK_EXPORT size_t MojoSetGLES2ControlThunks( |
const MojoGLES2ControlThunks* gles2_control_thunks) { |
if (gles2_control_thunks->size >= sizeof(g_control_thunks)) |
@@ -62,11 +53,4 @@ extern "C" THUNK_EXPORT size_t MojoSetGLES2ControlThunks( |
return sizeof(g_control_thunks); |
} |
-extern "C" THUNK_EXPORT size_t MojoSetGLES2ImplThunks( |
- const MojoGLES2ImplThunks* gles2_impl_thunks) { |
- if (gles2_impl_thunks->size >= sizeof(g_impl_thunks)) |
- g_impl_thunks = *gles2_impl_thunks; |
- return sizeof(g_impl_thunks); |
-} |
- |
} // extern "C" |