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

Unified Diff: app/gfx/gl/gl_interface.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/generate_bindings.py ('k') | gpu/command_buffer/common/gl_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/gfx/gl/gl_interface.h
===================================================================
--- app/gfx/gl/gl_interface.h (revision 72575)
+++ app/gfx/gl/gl_interface.h (working copy)
@@ -409,6 +409,20 @@
virtual GLuint GetMaxValueInBufferCHROMIUM(
GLuint buffer_id, GLsizei count, GLenum type, GLuint offset) = 0;
+ virtual void GenFencesNV(GLsizei n, GLuint *fences) = 0;
+
+ virtual void DeleteFencesNV(GLsizei n, const GLuint *fences) = 0;
+
+ virtual void SetFenceNV(GLuint fence, GLenum condition) = 0;
+
+ virtual GLboolean TestFenceNV(GLuint fence) = 0;
+
+ virtual void FinishFenceNV(GLuint fence) = 0;
+
+ virtual GLboolean IsFenceNV(GLuint fence) = 0;
+
+ virtual void GetFenceivNV(GLuint fence, GLenum pname, GLint *params) = 0;
+
private:
static GLInterface* interface_;
};
« no previous file with comments | « app/gfx/gl/generate_bindings.py ('k') | gpu/command_buffer/common/gl_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698