| Index: mojo/gles2/gles2_impl.cc
|
| diff --git a/mojo/gles2/gles2_impl.cc b/mojo/gles2/gles2_impl.cc
|
| index fdd6763ff1522c64df3aa6ab0d572caeb0309b05..bb117f522876a60d753b7109038a296effeaf520 100644
|
| --- a/mojo/gles2/gles2_impl.cc
|
| +++ b/mojo/gles2/gles2_impl.cc
|
| @@ -25,11 +25,6 @@ const int32_t kNone = 0x3038; // EGL_NONE
|
| base::LazyInstance<base::ThreadLocalPointer<gpu::gles2::GLES2Interface> >::Leaky
|
| g_gpu_interface;
|
|
|
| -void RunSignalSyncCallback(MojoGLES2SignalSyncPointCallback callback,
|
| - void* closure) {
|
| - callback(closure);
|
| -}
|
| -
|
| } // namespace
|
|
|
| extern "C" {
|
| @@ -74,16 +69,6 @@ void MojoGLES2SwapBuffers() {
|
| g_gpu_interface.Get().Get()->SwapBuffers();
|
| }
|
|
|
| -void MojoGLES2SignalSyncPoint(
|
| - MojoGLES2Context context,
|
| - uint32_t sync_point,
|
| - MojoGLES2SignalSyncPointCallback callback,
|
| - void* closure) {
|
| - DCHECK(context);
|
| - static_cast<GLES2Context*>(context)->context_support()->SignalSyncPoint(
|
| - sync_point, base::Bind(&RunSignalSyncCallback, callback, closure));
|
| -}
|
| -
|
| void* MojoGLES2GetGLES2Interface(MojoGLES2Context context) {
|
| return static_cast<GLES2Context*>(context)->interface();
|
| }
|
|
|