Chromium Code Reviews| 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 }, |