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

Unified Diff: shell/native_application_support.cc

Issue 1307883004: Use C OpenGL interface in mojo::GLContext (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: shell/native_application_support.cc
diff --git a/shell/native_application_support.cc b/shell/native_application_support.cc
index 9ab4a55c518abbb6bedc72ebfa5d8efd761a6c70..e1a2831bfcf8d31770b80493978b604613c4eb9a 100644
--- a/shell/native_application_support.cc
+++ b/shell/native_application_support.cc
@@ -8,9 +8,9 @@
#include "base/files/file_util.h"
#include "base/logging.h"
#include "mojo/public/platform/native/gles2_impl_chromium_bind_uniform_location_thunks.h"
+#include "mojo/public/platform/native/gles2_impl_chromium_map_sub_thunks.h"
#include "mojo/public/platform/native/gles2_impl_chromium_miscellaneous_thunks.h"
#include "mojo/public/platform/native/gles2_impl_chromium_resize_thunks.h"
-#include "mojo/public/platform/native/gles2_impl_chromium_sub_image_thunks.h"
#include "mojo/public/platform/native/gles2_impl_chromium_sync_point_thunks.h"
#include "mojo/public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.h"
#include "mojo/public/platform/native/gles2_impl_ext_debug_marker_thunks.h"
@@ -89,12 +89,12 @@ bool RunNativeApplication(
// "Chromium" extensions:
SetThunks(MojoMakeGLES2ImplChromiumBindUniformLocationThunks,
"MojoSetGLES2ImplChromiumBindUniformLocationThunks", app_library);
+ SetThunks(MojoMakeGLES2ImplChromiumMapSubThunks,
+ "MojoSetGLES2ImplChromiumMapSubThunks", app_library);
SetThunks(MojoMakeGLES2ImplChromiumMiscellaneousThunks,
"MojoSetGLES2ImplChromiumMiscellaneousThunks", app_library);
SetThunks(MojoMakeGLES2ImplChromiumResizeThunks,
"MojoSetGLES2ImplChromiumResizeThunks", app_library);
- SetThunks(MojoMakeGLES2ImplChromiumSubImageThunks,
- "MojoSetGLES2ImplChromiumSubImageThunks", app_library);
SetThunks(MojoMakeGLES2ImplChromiumSyncPointThunks,
"MojoSetGLES2ImplChromiumSyncPointThunks", app_library);
SetThunks(MojoMakeGLES2ImplChromiumTextureMailboxThunks,
« mojo/gpu/gl_context.cc ('K') | « mojo/public/platform/native/gles2_impl_chromium_sub_image_thunks.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698