diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 23:16:52 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-16 23:16:52 +0000 |
commit | 79aa4b79f1441c1cf4a97f869abaf4fb7c6a2685 (patch) | |
tree | eb4a50878f97068fcf8e48d6f0be5d4735531b5b /webkit | |
parent | 4d2a5ef9bb7839affe7dfcd457d1a9ffa8ab77ed (diff) | |
download | chromium_src-79aa4b79f1441c1cf4a97f869abaf4fb7c6a2685.zip chromium_src-79aa4b79f1441c1cf4a97f869abaf4fb7c6a2685.tar.gz chromium_src-79aa4b79f1441c1cf4a97f869abaf4fb7c6a2685.tar.bz2 |
Add OpenGL occlusion query support to pepper.
Should be full support for opengl es's occlusion query interface. Still only dev interfaces right now.
BUG=88601
TEST=
Review URL: https://chromiumcodereview.appspot.com/9601020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127298 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/ppapi/plugin_module.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index 3d39f16..58fc9d0 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -356,6 +356,8 @@ const void* GetInterface(const char* name) { return ::ppapi::PPB_OpenGLES2_Shared::GetChromiumEnableFeatureInterface(); if (strcmp(name, PPB_OPENGLES2_CHROMIUMMAPSUB_DEV_INTERFACE) == 0) return ::ppapi::PPB_OpenGLES2_Shared::GetChromiumMapSubInterface(); + if (strcmp(name, PPB_OPENGLES2_QUERY_DEV_INTERFACE) == 0) + return ::ppapi::PPB_OpenGLES2_Shared::GetQueryInterface(); if (strcmp(name, PPB_PROXY_PRIVATE_INTERFACE) == 0) return PPB_Proxy_Impl::GetInterface(); if (strcmp(name, PPB_UMA_PRIVATE_INTERFACE) == 0) |