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

Unified Diff: gpu/command_buffer/cmd_buffer_functions.txt

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/cmd_buffer_functions.txt
diff --git a/gpu/command_buffer/cmd_buffer_functions.txt b/gpu/command_buffer/cmd_buffer_functions.txt
index 4a6a75d4e11d2871fff04c4aa237e9fd3fc8a5f8..a93a03f91bc71580768de2964e956ae1f8152190 100644
--- a/gpu/command_buffer/cmd_buffer_functions.txt
+++ b/gpu/command_buffer/cmd_buffer_functions.txt
@@ -225,4 +225,20 @@ GL_APICALL void GL_APIENTRY glScheduleOverlayPlaneCHROMIUM (GLint plane_
// Extension CHROMIUM_path_rendering.
GL_APICALL void GL_APIENTRY glMatrixLoadfCHROMIUM (GLenumMatrixMode matrixMode, const GLfloat* m);
GL_APICALL void GL_APIENTRY glMatrixLoadIdentityCHROMIUM (GLenumMatrixMode matrixMode);
+GL_APICALL GLuint GL_APIENTRY glGenPathsCHROMIUM (GLsizei range);
+GL_APICALL void GL_APIENTRY glDeletePathsCHROMIUM (GLidPath path, GLsizei range);
+GL_APICALL void GL_APIENTRY glPathCommandsCHROMIUM (GLidPath path, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenumPathCoordType coordType, const void* coords);
+GL_APICALL void GL_APIENTRY glPathParameterfCHROMIUM (GLidPath path, GLenumPathParameter pname, GLfloat value);
+GL_APICALL void GL_APIENTRY glPathParameteriCHROMIUM (GLidPath path, GLenumPathParameter pname, GLint value);
+GL_APICALL void GL_APIENTRY glPathStencilFuncCHROMIUM (GLenumCmpFunction func, GLint ref, GLuint mask);
+GL_APICALL void GL_APIENTRY glStencilFillPathCHROMIUM (GLidPath path, GLenumPathFillMode fillMode, GLuint mask);
+GL_APICALL void GL_APIENTRY glStencilFillPathInstancedCHROMIUM (GLsizei numPaths, GLenumPathNameType pathNameType, const void* paths, GLuint pathBase, GLenumPathFillMode fillMode, GLuint mask, GLenumPathTransformType transformType, const GLfloat* transformValues);
+GL_APICALL void GL_APIENTRY glStencilStrokePathCHROMIUM (GLidPath path, GLint reference, GLuint mask);
+GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedCHROMIUM (GLsizei numPaths, GLenumPathNameType pathNameType, const void* paths, GLuint pathBase, GLint ref, GLuint mask, GLenumPathTransformType transformType, const GLfloat* transformValues);
+GL_APICALL void GL_APIENTRY glPathTexGenCHROMIUM (GLenum texCoordSet, GLenumPathGenMode genMode, GLint components, const GLfloat* coeffs);
+GL_APICALL void GL_APIENTRY glCoverFillPathCHROMIUM (GLidPath path, GLenumPathCoverMode coverMode);
+GL_APICALL void GL_APIENTRY glCoverFillPathInstancedCHROMIUM (GLsizei numPaths, GLenumPathNameType pathNameType, const void* paths, GLuint pathBase, GLenumPathCoverModeInstanced coverMode, GLenumPathTransformType transformType, const GLfloat* transformValues);
+GL_APICALL void GL_APIENTRY glCoverStrokePathCHROMIUM (GLidPath path, GLenumPathCoverMode coverMode);
+GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedCHROMIUM (GLsizei numPaths, GLenumPathNameType pathNameType, const void* paths, GLuint pathBase, GLenumPathCoverModeInstanced coverMode, GLenumPathTransformType transformType, const GLfloat* transformValues);
+

Powered by Google App Engine
This is Rietveld 408576698