Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
index c8432dabd0ac2dc6b94e05627a4a24fdb30f7a68..dc86380d45527f3e815e431b346f5dc73e9e35c1 100644 |
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
@@ -1929,4 +1929,125 @@ void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) { |
} |
} |
+void GenPathsCHROMIUM(GLuint first_client_id, GLsizei range) { |
+ gles2::cmds::GenPathsCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::GenPathsCHROMIUM>(); |
+ if (c) { |
+ c->Init(first_client_id, range); |
+ } |
+} |
+ |
+void DeletePathsCHROMIUM(GLuint first_client_id, GLsizei range) { |
+ gles2::cmds::DeletePathsCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::DeletePathsCHROMIUM>(); |
+ if (c) { |
+ c->Init(first_client_id, range); |
+ } |
+} |
+ |
+void IsPathCHROMIUM(GLuint path, |
+ uint32_t result_shm_id, |
+ uint32_t result_shm_offset) { |
+ gles2::cmds::IsPathCHROMIUM* c = GetCmdSpace<gles2::cmds::IsPathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, result_shm_id, result_shm_offset); |
+ } |
+} |
+ |
+void PathCommandsCHROMIUM(GLuint path, |
+ GLsizei numCommands, |
+ uint32_t commands_shm_id, |
+ uint32_t commands_shm_offset, |
+ GLsizei numCoords, |
+ uint32_t coords_shm_id, |
+ uint32_t coords_shm_offset) { |
+ gles2::cmds::PathCommandsCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::PathCommandsCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, |
+ numCommands, |
+ commands_shm_id, |
+ commands_shm_offset, |
+ numCoords, |
+ coords_shm_id, |
+ coords_shm_offset); |
+ } |
+} |
+ |
+void PathParameterfCHROMIUM(GLuint path, GLenum pname, GLfloat value) { |
+ gles2::cmds::PathParameterfCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::PathParameterfCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, pname, value); |
+ } |
+} |
+ |
+void PathParameteriCHROMIUM(GLuint path, GLenum pname, GLint value) { |
+ gles2::cmds::PathParameteriCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::PathParameteriCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, pname, value); |
+ } |
+} |
+ |
+void PathStencilFuncCHROMIUM(GLenum func, GLint ref, GLuint mask) { |
+ gles2::cmds::PathStencilFuncCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::PathStencilFuncCHROMIUM>(); |
+ if (c) { |
+ c->Init(func, ref, mask); |
+ } |
+} |
+ |
+void StencilFillPathCHROMIUM(GLuint path, GLenum fillMode, GLuint mask) { |
+ gles2::cmds::StencilFillPathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::StencilFillPathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, fillMode, mask); |
+ } |
+} |
+ |
+void StencilStrokePathCHROMIUM(GLuint path, GLint reference, GLuint mask) { |
+ gles2::cmds::StencilStrokePathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::StencilStrokePathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, reference, mask); |
+ } |
+} |
+ |
+void CoverFillPathCHROMIUM(GLuint path) { |
+ gles2::cmds::CoverFillPathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::CoverFillPathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path); |
+ } |
+} |
+ |
+void CoverStrokePathCHROMIUM(GLuint path) { |
+ gles2::cmds::CoverStrokePathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::CoverStrokePathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path); |
+ } |
+} |
+ |
+void StencilThenCoverFillPathCHROMIUM(GLuint path, |
+ GLenum fillMode, |
+ GLuint mask) { |
+ gles2::cmds::StencilThenCoverFillPathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::StencilThenCoverFillPathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, fillMode, mask); |
+ } |
+} |
+ |
+void StencilThenCoverStrokePathCHROMIUM(GLuint path, |
+ GLint reference, |
+ GLuint mask) { |
+ gles2::cmds::StencilThenCoverStrokePathCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::StencilThenCoverStrokePathCHROMIUM>(); |
+ if (c) { |
+ c->Init(path, reference, mask); |
+ } |
+} |
+ |
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ |