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

Unified Diff: gpu/command_buffer/client/gles2_interface_stub_autogen.h

Issue 169403005: command_buffer: Implement path rendering functions for CHROMIUM_path_rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nv-pr-02-texgen
Patch Set: rebase and cleanup ids Created 6 years, 2 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
Index: gpu/command_buffer/client/gles2_interface_stub_autogen.h
diff --git a/gpu/command_buffer/client/gles2_interface_stub_autogen.h b/gpu/command_buffer/client/gles2_interface_stub_autogen.h
index 2e686e78227da8e0b021fa34357a6bb6216abec7..e86f2bde77443f317555eb6f92562316826bded1 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_autogen.h
@@ -529,4 +529,35 @@ virtual void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
GLfloat uv_height) OVERRIDE;
virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) OVERRIDE;
virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) OVERRIDE;
+virtual GLuint GenPathsCHROMIUM(GLsizei range) OVERRIDE;
+virtual void DeletePathsCHROMIUM(GLuint path, GLsizei range) OVERRIDE;
+virtual GLboolean IsPathCHROMIUM(GLuint path) OVERRIDE;
+virtual void PathCommandsCHROMIUM(GLuint path,
+ GLsizei numCommands,
+ const GLubyte* commands,
+ GLsizei numCoords,
+ const GLfloat* coords) OVERRIDE;
+virtual void PathParameterfCHROMIUM(GLuint path,
+ GLenum pname,
+ GLfloat value) OVERRIDE;
+virtual void PathParameteriCHROMIUM(GLuint path,
+ GLenum pname,
+ GLint value) OVERRIDE;
+virtual void PathStencilFuncCHROMIUM(GLenum func,
+ GLint ref,
+ GLuint mask) OVERRIDE;
+virtual void StencilFillPathCHROMIUM(GLuint path,
+ GLenum fillMode,
+ GLuint mask) OVERRIDE;
+virtual void StencilStrokePathCHROMIUM(GLuint path,
+ GLint reference,
+ GLuint mask) OVERRIDE;
+virtual void CoverFillPathCHROMIUM(GLuint path) OVERRIDE;
+virtual void CoverStrokePathCHROMIUM(GLuint path) OVERRIDE;
+virtual void StencilThenCoverFillPathCHROMIUM(GLuint path,
+ GLenum fillMode,
+ GLuint mask) OVERRIDE;
+virtual void StencilThenCoverStrokePathCHROMIUM(GLuint path,
+ GLint reference,
+ GLuint mask) OVERRIDE;
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_AUTOGEN_H_

Powered by Google App Engine
This is Rietveld 408576698