diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-13 20:37:48 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-13 20:39:34 +0000 |
commit | 7e2975ae0cc538d8f58da3535298a4d78b980533 (patch) | |
tree | efe7153050c4336b54377f7c7b889ef0b6ddf811 /mojo/gles2 | |
parent | 2e0f267ad9df8c738fe05dc6c49442d717357b22 (diff) | |
download | chromium_src-7e2975ae0cc538d8f58da3535298a4d78b980533.zip chromium_src-7e2975ae0cc538d8f58da3535298a4d78b980533.tar.gz chromium_src-7e2975ae0cc538d8f58da3535298a4d78b980533.tar.bz2 |
Expose CHROMIUM_texture_mailbox/sync_point stubs in mojo public headers
BUG=
R=piman@chromium.org
Review URL: https://codereview.chromium.org/453163002
Cr-Commit-Position: refs/heads/master@{#289367}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/gles2')
-rw-r--r-- | mojo/gles2/DEPS | 1 | ||||
-rw-r--r-- | mojo/gles2/gles2_impl.cc | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mojo/gles2/DEPS b/mojo/gles2/DEPS index a0e373e..db90643 100644 --- a/mojo/gles2/DEPS +++ b/mojo/gles2/DEPS @@ -1,4 +1,5 @@ include_rules = [ "+gpu/command_buffer/client", "+gpu/command_buffer/common", + "+gpu/GLES2", ] diff --git a/mojo/gles2/gles2_impl.cc b/mojo/gles2/gles2_impl.cc index a77405f..3d46ecd 100644 --- a/mojo/gles2/gles2_impl.cc +++ b/mojo/gles2/gles2_impl.cc @@ -6,6 +6,7 @@ #include "base/lazy_instance.h" #include "base/threading/thread_local.h" +#include "gpu/GLES2/gl2extchromium.h" #include "gpu/command_buffer/client/gles2_interface.h" #include "mojo/gles2/gles2_context.h" @@ -65,6 +66,8 @@ void* MojoGLES2GetContextSupport(MojoGLES2Context context) { return g_gpu_interface.Get().Get()->Function ARGUMENTS; \ } #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" +#include "mojo/public/c/gles2/gles2_call_visitor_chromium_sync_point_autogen.h" +#include "mojo/public/c/gles2/gles2_call_visitor_chromium_texture_mailbox_autogen.h" #undef VISIT_GL_CALL } // extern "C" |