diff options
author | penghuang <penghuang@chromium.org> | 2015-09-16 13:11:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-16 20:12:04 +0000 |
commit | ab7a90daddbe7d44558d8703b12204570ae98431 (patch) | |
tree | 3ff87c88b1cf5935b8327ef05fde8e378971764b /mojo/gles2 | |
parent | a92068219280fb0f892500f11525ffc0e4a00eee (diff) | |
download | chromium_src-ab7a90daddbe7d44558d8703b12204570ae98431.zip chromium_src-ab7a90daddbe7d44558d8703b12204570ae98431.tar.gz chromium_src-ab7a90daddbe7d44558d8703b12204570ae98431.tar.bz2 |
This change adds WebGL support in mandoline. It also adds GL
chromium_framebuffer_multisample extension which is need by
WebGL.
TODO:
* Pass attributes to GPU when create WebGL context.
* Get GPU info and fill it into glinfo.
TEST= mandoline --enable-webgl http://learningwebgl.com/lessons/lesson03/index.html
BUG=525159
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1338433002
Cr-Commit-Position: refs/heads/master@{#349206}
Diffstat (limited to 'mojo/gles2')
-rw-r--r-- | mojo/gles2/gles2_impl.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mojo/gles2/gles2_impl.cc b/mojo/gles2/gles2_impl.cc index 4f308e9..a645fe2 100644 --- a/mojo/gles2/gles2_impl.cc +++ b/mojo/gles2/gles2_impl.cc @@ -82,6 +82,7 @@ void* MojoGLES2GetContextSupport(MojoGLES2Context context) { } #include "mojo/public/c/gles2/gles2_call_visitor_autogen.h" #include "mojo/public/c/gles2/gles2_call_visitor_chromium_copy_texture_autogen.h" +#include "mojo/public/c/gles2/gles2_call_visitor_chromium_framebuffer_multisample_autogen.h" #include "mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h" #include "mojo/public/c/gles2/gles2_call_visitor_chromium_miscellaneous_autogen.h" #include "mojo/public/c/gles2/gles2_call_visitor_chromium_pixel_transfer_buffer_object_autogen.h" |