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

Unified Diff: ui/gl/gl_mock.h

Issue 2826143003: Passthrough CmdDecoder: Use robust CompressedTex(Sub)Image (Closed)
Patch Set: Manually add glCompressedTexSubImage3DRobustANGLE to gl_mack.h because it has more than the 10 args… Created 3 years, 8 months 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
« no previous file with comments | « ui/gl/gl_enums_implementation_autogen.h ('k') | ui/gl/gl_mock_autogen_gl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_mock.h
diff --git a/ui/gl/gl_mock.h b/ui/gl/gl_mock.h
index ab78732f72649668f6cd709918341d2b4e1e349e..93d17bd269da8081419d5da6f2336e027f78715b 100644
--- a/ui/gl/gl_mock.h
+++ b/ui/gl/gl_mock.h
@@ -46,6 +46,21 @@ class MockGLInterface {
NOTREACHED();
}
+ void CompressedTexSubImage3DRobustANGLE(GLenum /*target*/,
+ GLint /*level*/,
+ GLint /*xoffset*/,
+ GLint /*yoffset*/,
+ GLint /*zoffset*/,
+ GLsizei /*width*/,
+ GLsizei /*height*/,
+ GLsizei /*depth*/,
+ GLenum /*format*/,
+ GLsizei /*imageSize*/,
+ GLsizei /*dataSize*/,
+ const void* /*data*/) {
+ NOTREACHED();
+ }
+
void CopySubTextureCHROMIUM(GLuint /*sourceId*/,
GLint /*sourceLevel*/,
GLenum /*destTarget*/,
« no previous file with comments | « ui/gl/gl_enums_implementation_autogen.h ('k') | ui/gl/gl_mock_autogen_gl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698