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

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

Issue 6313013: Exposed GL_NV_fence bindings to GPU process.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | « app/gfx/gl/gl_interface.h ('k') | no next file » | 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 72575)
+++ gpu/command_buffer/common/gl_mock.h (working copy)
@@ -408,6 +408,20 @@
MOCK_METHOD4(GetMaxValueInBufferCHROMIUM, GLuint(
GLuint buffer_id, GLsizei count, GLenum type, GLuint offset));
+
+ MOCK_METHOD2(GenFencesNV, void(GLsizei n, GLuint *fences));
+
+ MOCK_METHOD2(DeleteFencesNV, void(GLsizei n, const GLuint *fences));
+
+ MOCK_METHOD2(SetFenceNV, void(GLuint fence, GLenum condition));
+
+ MOCK_METHOD1(TestFenceNV, GLboolean(GLuint fence));
+
+ MOCK_METHOD1(FinishFenceNV, void(GLuint fence));
+
+ MOCK_METHOD1(IsFenceNV, GLboolean(GLuint fence));
+
+ MOCK_METHOD3(GetFenceivNV, void(GLuint fence, GLenum pname, GLint *params));
};
} // namespace gfx
« no previous file with comments | « app/gfx/gl/gl_interface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698