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

Unified Diff: gpu/command_buffer/client/gles2_implementation_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: improve parameter validation and write up the extension .txt file Created 6 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
Index: gpu/command_buffer/client/gles2_implementation_autogen.h
diff --git a/gpu/command_buffer/client/gles2_implementation_autogen.h b/gpu/command_buffer/client/gles2_implementation_autogen.h
index c7fefc78ba6a7e313633194b5891a33fda641440..b8d06580e680cbbfa1ec2fda4b4037841fb8c8cb 100644
--- a/gpu/command_buffer/client/gles2_implementation_autogen.h
+++ b/gpu/command_buffer/client/gles2_implementation_autogen.h
@@ -737,4 +737,82 @@ 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 void PathCommandsCHROMIUM(GLuint path,
+ GLsizei numCommands,
+ const GLubyte* commands,
+ GLsizei numCoords,
+ GLenum coordType,
+ const void* 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 StencilFillPathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ const void* paths,
+ GLuint pathBase,
+ GLenum fillMode,
+ GLuint mask,
+ GLenum transformType,
+ const GLfloat* transformValues) OVERRIDE;
+
+virtual void StencilStrokePathCHROMIUM(GLuint path,
+ GLint reference,
+ GLuint mask) OVERRIDE;
+
+virtual void StencilStrokePathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ const void* paths,
+ GLuint pathBase,
+ GLint ref,
+ GLuint mask,
+ GLenum transformType,
+ const GLfloat* transformValues) OVERRIDE;
+
+virtual void PathTexGenCHROMIUM(GLenum texCoordSet,
+ GLenum genMode,
+ GLint components,
+ const GLfloat* coeffs) OVERRIDE;
+
+virtual void CoverFillPathCHROMIUM(GLuint path, GLenum coverMode) OVERRIDE;
+
+virtual void CoverFillPathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ const void* paths,
+ GLuint pathBase,
+ GLenum coverMode,
+ GLenum transformType,
+ const GLfloat* transformValues) OVERRIDE;
+
+virtual void CoverStrokePathCHROMIUM(GLuint path, GLenum coverMode) OVERRIDE;
+
+virtual void CoverStrokePathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ const void* paths,
+ GLuint pathBase,
+ GLenum coverMode,
+ GLenum transformType,
+ const GLfloat* transformValues) OVERRIDE;
+
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_

Powered by Google App Engine
This is Rietveld 408576698