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

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

Issue 7564013: Roll skia to r2034 (and add new gl bindings) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « DEPS ('k') | ui/gfx/gl/generate_bindings.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/common/gl_mock.h
===================================================================
--- gpu/command_buffer/common/gl_mock.h (revision 95237)
+++ gpu/command_buffer/common/gl_mock.h (working copy)
@@ -135,6 +135,10 @@
MOCK_METHOD3(DrawArrays, void(GLenum mode, GLint first, GLsizei count));
+ MOCK_METHOD1(DrawBuffer, void(GLenum mode));
+
+ MOCK_METHOD2(DrawBuffersARB, void(GLsizei n, const GLenum* bufs));
+
MOCK_METHOD4(DrawElements, void(
GLenum mode, GLsizei count, GLenum type, const void* indices));
@@ -272,6 +276,8 @@
MOCK_METHOD2(PolygonOffset, void(GLfloat factor, GLfloat units));
+ MOCK_METHOD1(ReadBuffer, void(GLenum src));
+
MOCK_METHOD7(ReadPixels, void(
GLint x, GLint y, GLsizei width, GLsizei height, GLenum format,
GLenum type, void* pixels));
« no previous file with comments | « DEPS ('k') | ui/gfx/gl/generate_bindings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698