Add offscreen context creation attributes to GGL.
View contexts and more extensive color format picking not handled yet.
BUG=39849
TEST=WebGL conformance tests (context*.html)
Review URL: http://codereview.chromium.org/3302019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61220 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/app/gfx/gl/gl_mock.h b/app/gfx/gl/gl_mock.h
index 4564fee4..235b9af7 100644
--- a/app/gfx/gl/gl_mock.h
+++ b/app/gfx/gl/gl_mock.h
@@ -46,6 +46,11 @@
MOCK_METHOD4(BlendFuncSeparate, void(
GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha));
+ MOCK_METHOD10(BlitFramebufferANGLE, void(
+ GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
+ GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
+ GLbitfield mask, GLenum filter));
+
MOCK_METHOD10(BlitFramebufferEXT, void(
GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
@@ -262,6 +267,10 @@
MOCK_METHOD4(RenderbufferStorageEXT, void(
GLenum target, GLenum internalformat, GLsizei width, GLsizei height));
+ MOCK_METHOD5(RenderbufferStorageMultisampleANGLE, void(
+ GLenum target, GLsizei samples, GLenum internalformat,
+ GLsizei width, GLsizei height));
+
MOCK_METHOD5(RenderbufferStorageMultisampleEXT, void(
GLenum target, GLsizei samples, GLenum internalformat,
GLsizei width, GLsizei height));
@@ -398,6 +407,3 @@
} // namespace gfx
#endif // APP_GFX_GL_GL_MOCK_H_
-
-
-