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

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: fix msvc signedness warning in an unittest Created 5 years, 1 month 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 GL_APICALL void GL_APIENTRY glPathCommandsCHROMIUM (GLidPath path, GLsiz ei numCommands, const GLubyte* commands, GLsizei numCoords, GLenumPathCoordType coordType, const GLvoid* coords); 326 GL_APICALL void GL_APIENTRY glPathCommandsCHROMIUM (GLidPath path, GLsiz ei numCommands, const GLubyte* commands, GLsizei numCoords, GLenumPathCoordType coordType, const GLvoid* coords);
327 GL_APICALL void GL_APIENTRY glPathParameterfCHROMIUM (GLidPath path, GLe numPathParameter pname, GLfloat value); 327 GL_APICALL void GL_APIENTRY glPathParameterfCHROMIUM (GLidPath path, GLe numPathParameter pname, GLfloat value);
328 GL_APICALL void GL_APIENTRY glPathParameteriCHROMIUM (GLidPath path, GLe numPathParameter pname, GLint value); 328 GL_APICALL void GL_APIENTRY glPathParameteriCHROMIUM (GLidPath path, GLe numPathParameter pname, GLint value);
329 GL_APICALL void GL_APIENTRY glPathStencilFuncCHROMIUM (GLenumCmpFunction func, GLint ref, GLuint mask); 329 GL_APICALL void GL_APIENTRY glPathStencilFuncCHROMIUM (GLenumCmpFunction func, GLint ref, GLuint mask);
330 GL_APICALL void GL_APIENTRY glStencilFillPathCHROMIUM (GLidPath path, GL enumPathFillMode fillMode, GLuint mask); 330 GL_APICALL void GL_APIENTRY glStencilFillPathCHROMIUM (GLidPath path, GL enumPathFillMode fillMode, GLuint mask);
331 GL_APICALL void GL_APIENTRY glStencilStrokePathCHROMIUM (GLidPath path, GLint reference, GLuint mask); 331 GL_APICALL void GL_APIENTRY glStencilStrokePathCHROMIUM (GLidPath path, GLint reference, GLuint mask);
332 GL_APICALL void GL_APIENTRY glCoverFillPathCHROMIUM (GLidPath path, GLen umPathCoverMode coverMode); 332 GL_APICALL void GL_APIENTRY glCoverFillPathCHROMIUM (GLidPath path, GLen umPathCoverMode coverMode);
333 GL_APICALL void GL_APIENTRY glCoverStrokePathCHROMIUM (GLidPath path, GL enumPathCoverMode coverMode); 333 GL_APICALL void GL_APIENTRY glCoverStrokePathCHROMIUM (GLidPath path, GL enumPathCoverMode coverMode);
334 GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathCHROMIUM (GLidPath path, GLenumPathFillMode fillMode, GLuint mask, GLenumPathCoverMode coverMode); 334 GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathCHROMIUM (GLidPath path, GLenumPathFillMode fillMode, GLuint mask, GLenumPathCoverMode coverMode);
335 GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathCHROMIUM (GLidPa th path, GLint reference, GLuint mask, GLenumPathCoverMode coverMode); 335 GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathCHROMIUM (GLidPa th path, GLint reference, GLuint mask, GLenumPathCoverMode coverMode);
336 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);
337 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);
338 GL_APICALL void GL_APIENTRY glCoverFillPathInstancedCHROMIUM (GLsizei nu mPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLenumPathIns tancedCoverMode coverMode, GLenumPathTransformType transformType, const GLfloat* transformValues);
339 GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedCHROMIUM (GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLuint pathBase, GLenumPathI nstancedCoverMode coverMode, GLenumPathTransformType transformType, const GLfloa t* transformValues);
340 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);
341 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);
336 342
337 // Extension KHR_robustness 343 // Extension KHR_robustness
338 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); 344 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void);
339 345
340 // Extension KHR_blend_equation_advanced 346 // Extension KHR_blend_equation_advanced
341 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); 347 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void);
342 348
343 // Extension GL_CHROMIUM_screen_space_antialiasing 349 // Extension GL_CHROMIUM_screen_space_antialiasing
344 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void); 350 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void);
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/transfer_buffer.h ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698