diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-20 01:16:53 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-20 01:16:53 +0000 |
commit | 3831ae45b1e856e07e760e0a8630c79ef690f8c1 (patch) | |
tree | 6701b5e1f78af43872f500c967208b77258c5804 /cc/test/test_gles2_interface.h | |
parent | 108949ca10059379fa04f52528ce300efe78ee20 (diff) | |
download | chromium_src-3831ae45b1e856e07e760e0a8630c79ef690f8c1.zip chromium_src-3831ae45b1e856e07e760e0a8630c79ef690f8c1.tar.gz chromium_src-3831ae45b1e856e07e760e0a8630c79ef690f8c1.tar.bz2 |
Use the GL in process bindings directly in cc_unittests
This binds cc_unittests to the GL in process command buffer bindings directly
instead of relying on the setup in webkit/common/gpu.
BUG=181120
Review URL: https://codereview.chromium.org/105303003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/test_gles2_interface.h')
-rw-r--r-- | cc/test/test_gles2_interface.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cc/test/test_gles2_interface.h b/cc/test/test_gles2_interface.h index 1d3ecce..40130c2 100644 --- a/cc/test/test_gles2_interface.h +++ b/cc/test/test_gles2_interface.h @@ -162,6 +162,10 @@ class TestGLES2Interface : public gpu::gles2::GLES2InterfaceStub { virtual void ConsumeTextureCHROMIUM(GLenum target, const GLbyte* mailbox) OVERRIDE; + virtual void ResizeCHROMIUM(GLuint width, + GLuint height, + float device_scale) OVERRIDE; + private: TestWebGraphicsContext3D* test_context_; }; |