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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc

Issue 9420017: Add Pepper support for several GL extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build_gles2_cmd_buffer Created 8 years, 10 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
« no previous file with comments | « ppapi/lib/gl/gles2/gles2.c ('k') | ppapi/native_client/src/shared/ppapi_proxy/plugin_opengles.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
index 9eb4215bd8086853948e93ea297c881104e1bb14..712b83a5627dc0c45285f79b56b93ab9301f5aad 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
@@ -17,8 +17,8 @@
#include "native_client/src/shared/ppapi_proxy/utility.h"
#include "native_client/src/shared/srpc/nacl_srpc.h"
#include "native_client/src/trusted/plugin/plugin.h"
-#include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h"
#include "ppapi/c/dev/ppb_layer_compositor_dev.h"
+#include "ppapi/c/dev/ppb_opengles2ext_dev.h"
#include "ppapi/c/ppb_graphics_3d.h"
#include "ppapi/c/ppb_opengles2.h"
#include "ppapi/c/trusted/ppb_graphics_3d_trusted.h"
@@ -186,8 +186,12 @@ const void* GetBrowserInterface(const char* interface_name) {
static const char* disabled_interface_names[] = {
PPB_GRAPHICS_3D_INTERFACE,
PPB_GRAPHICS_3D_TRUSTED_INTERFACE,
- PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_INTERFACE,
PPB_OPENGLES2_INTERFACE,
+ PPB_OPENGLES2_INSTANCEDARRAYS_DEV_INTERFACE,
+ PPB_OPENGLES2_FRAMEBUFFERBLIT_DEV_INTERFACE,
+ PPB_OPENGLES2_FRAMEBUFFERMULTISAMPLE_DEV_INTERFACE,
+ PPB_OPENGLES2_CHROMIUMENABLEFEATURE_DEV_INTERFACE,
+ PPB_OPENGLES2_CHROMIUMMAPSUB_DEV_INTERFACE,
PPB_LAYER_COMPOSITOR_DEV_INTERFACE
};
for (size_t i = 0; i < NACL_ARRAY_SIZE(disabled_interface_names); i++) {
« no previous file with comments | « ppapi/lib/gl/gles2/gles2.c ('k') | ppapi/native_client/src/shared/ppapi_proxy/plugin_opengles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698