Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: gpu/command_buffer/common/gl_mock.h

Issue 8772033: Adds support for the GL_ANGLE_texture_usage and GL_EXT_texture_storage (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/common/gl_mock.h
===================================================================
--- gpu/command_buffer/common/gl_mock.h (revision 112643)
+++ gpu/command_buffer/common/gl_mock.h (working copy)
@@ -364,6 +364,10 @@
MOCK_METHOD3(TexParameteriv, void(
GLenum target, GLenum pname, const GLint* params));
+ MOCK_METHOD5(TexStorage2DEXT, void(
+ GLenum target, GLsizei levels, GLenum internalformat,
+ GLsizei width, GLsizei height));
+
MOCK_METHOD9(TexSubImage2D, void(
GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
GLsizei height, GLenum format, GLenum type, const void* pixels));
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_autogen.h ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698