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

Side by Side Diff: gpu/command_buffer/cmd_buffer_functions.txt

Issue 477623004: command_buffer: Support instanced path rendering in gpu command buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-03-path-funcs
Patch Set: rebase Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is read by build_gles2_cmd_buffer.py to generate commands. 5 // This file is read by build_gles2_cmd_buffer.py to generate commands.
6 6
7 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); 7 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
8 GL_APICALL void GL_APIENTRY glAttachShader (GLidProgram program, GLidSha der shader); 8 GL_APICALL void GL_APIENTRY glAttachShader (GLidProgram program, GLidSha der shader);
9 GL_APICALL void GL_APIENTRY glBindAttribLocation (GLidProgram program, G Luint index, const char* name); 9 GL_APICALL void GL_APIENTRY glBindAttribLocation (GLidProgram program, G Luint index, const char* name);
10 GL_APICALL void GL_APIENTRY glBindBuffer (GLenumBufferTarget target, GLi dBindBuffer buffer); 10 GL_APICALL void GL_APIENTRY glBindBuffer (GLenumBufferTarget target, GLi dBindBuffer buffer);
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 GL_APICALL void GL_APIENTRY glPathCommandsCHROMIUM (GLidPath path, GLsiz ei numCommands, const GLubyte* commands, GLsizei numCoords, GLenumPathCoordType coordType, const GLvoid* coords); 322 GL_APICALL void GL_APIENTRY glPathCommandsCHROMIUM (GLidPath path, GLsiz ei numCommands, const GLubyte* commands, GLsizei numCoords, GLenumPathCoordType coordType, const GLvoid* coords);
323 GL_APICALL void GL_APIENTRY glPathParameterfCHROMIUM (GLidPath path, GLe numPathParameter pname, GLfloat value); 323 GL_APICALL void GL_APIENTRY glPathParameterfCHROMIUM (GLidPath path, GLe numPathParameter pname, GLfloat value);
324 GL_APICALL void GL_APIENTRY glPathParameteriCHROMIUM (GLidPath path, GLe numPathParameter pname, GLint value); 324 GL_APICALL void GL_APIENTRY glPathParameteriCHROMIUM (GLidPath path, GLe numPathParameter pname, GLint value);
325 GL_APICALL void GL_APIENTRY glPathStencilFuncCHROMIUM (GLenumCmpFunction func, GLint ref, GLuint mask); 325 GL_APICALL void GL_APIENTRY glPathStencilFuncCHROMIUM (GLenumCmpFunction func, GLint ref, GLuint mask);
326 GL_APICALL void GL_APIENTRY glStencilFillPathCHROMIUM (GLidPath path, GL enumPathFillMode fillMode, GLuint mask); 326 GL_APICALL void GL_APIENTRY glStencilFillPathCHROMIUM (GLidPath path, GL enumPathFillMode fillMode, GLuint mask);
327 GL_APICALL void GL_APIENTRY glStencilStrokePathCHROMIUM (GLidPath path, GLint reference, GLuint mask); 327 GL_APICALL void GL_APIENTRY glStencilStrokePathCHROMIUM (GLidPath path, GLint reference, GLuint mask);
328 GL_APICALL void GL_APIENTRY glCoverFillPathCHROMIUM (GLidPath path, GLen umPathCoverMode coverMode); 328 GL_APICALL void GL_APIENTRY glCoverFillPathCHROMIUM (GLidPath path, GLen umPathCoverMode coverMode);
329 GL_APICALL void GL_APIENTRY glCoverStrokePathCHROMIUM (GLidPath path, GL enumPathCoverMode coverMode); 329 GL_APICALL void GL_APIENTRY glCoverStrokePathCHROMIUM (GLidPath path, GL enumPathCoverMode coverMode);
330 GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathCHROMIUM (GLidPath path, GLenumPathFillMode fillMode, GLuint mask, GLenumPathCoverMode coverMode); 330 GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathCHROMIUM (GLidPath path, GLenumPathFillMode fillMode, GLuint mask, GLenumPathCoverMode coverMode);
331 GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathCHROMIUM (GLidPa th path, GLint reference, GLuint mask, GLenumPathCoverMode coverMode); 331 GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathCHROMIUM (GLidPa th path, GLint reference, GLuint mask, GLenumPathCoverMode coverMode);
332 GL_APICALL void GL_APIENTRY glStencilFillPathInstancedCHROMIUM (GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLenumPathF illMode fillMode, GLuint mask, GLenumPathTransformType transformType, const GLfl oat* transformValues);
333 GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedCHROMIUM (GLsize i numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLint ref erence, GLuint mask, GLenumPathTransformType transformType, const GLfloat* trans formValues);
334 GL_APICALL void GL_APIENTRY glCoverFillPathInstancedCHROMIUM (GLsizei nu mPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLenumPathIns tancedCoverMode coverMode, GLenumPathTransformType transformType, const GLfloat* transformValues);
335 GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedCHROMIUM (GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLenumPathI nstancedCoverMode coverMode, GLenumPathTransformType transformType, const GLfloa t* transformValues);
336 GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedCHROMIUM (GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GL enumPathFillMode fillMode, GLuint mask, GLenumPathInstancedCoverMode coverMode, GLenumPathTransformType transformType, const GLfloat* transformValues);
337 GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedCHROMIU M (GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLint reference, GLuint mask, GLenumPathInstancedCoverMode coverMode, GLenumPath TransformType transformType, const GLfloat* transformValues);
332 338
333 // Extension KHR_robustness 339 // Extension KHR_robustness
334 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); 340 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void);
335 341
336 // Extension KHR_blend_equation_advanced 342 // Extension KHR_blend_equation_advanced
337 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); 343 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void);
338 344
339 // Extension GL_CHROMIUM_screen_space_antialiasing 345 // Extension GL_CHROMIUM_screen_space_antialiasing
340 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void); 346 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698