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

Unified Diff: src/shared/ppapi_proxy/plugin_ppb.cc

Issue 6579023: Added PPB_GLESChromiumTextureMapping interface. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 9 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 | « src/shared/ppapi_proxy/nacl.scons ('k') | src/shared/ppapi_proxy/plugin_ppb_gles_extensions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/plugin_ppb.cc
diff --git a/src/shared/ppapi_proxy/plugin_ppb.cc b/src/shared/ppapi_proxy/plugin_ppb.cc
index 5a9552465743b1f491db1320151ed3e3160deb1a..e06ac7a476fff379eeb1f3936fc1d2d05b2890b7 100644
--- a/src/shared/ppapi_proxy/plugin_ppb.cc
+++ b/src/shared/ppapi_proxy/plugin_ppb.cc
@@ -12,6 +12,7 @@
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_audio_config.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_buffer.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_core.h"
+#include "native_client/src/shared/ppapi_proxy/plugin_ppb_gles_extensions.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_2d.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_image_data.h"
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_instance.h"
@@ -39,6 +40,8 @@ InterfaceMapElement interface_map[] = {
{ PPB_AUDIO_CONFIG_INTERFACE, PluginAudioConfig::GetInterface(), true },
{ PPB_CORE_INTERFACE, PluginCore::GetInterface(), true },
{ PPB_CONTEXT_3D_DEV_INTERFACE, PluginContext3D::GetInterface(), true },
+ { PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_INTERFACE,
+ GLESChromiumTextureMapping::GetInterface(), true },
nfullagar 2011/02/24 02:07:51 hmm... we're going to do each block of gl extensio
{ PPB_GRAPHICS_2D_INTERFACE, PluginGraphics2D::GetInterface(), true },
{ PPB_IMAGEDATA_INTERFACE, PluginImageData::GetInterface(), true },
{ PPB_INSTANCE_INTERFACE, PluginInstance::GetInterface(), true },
« no previous file with comments | « src/shared/ppapi_proxy/nacl.scons ('k') | src/shared/ppapi_proxy/plugin_ppb_gles_extensions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698