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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ec5b9f80fea4c59c10da5b947747d23938bbf1b3..1a24e041f88b701d13b9c41ef12ee9d328b4248b 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -2986,6 +2986,122 @@ void StencilThenCoverStrokePathCHROMIUM(GLuint path,
}
}
+void StencilFillPathInstancedCHROMIUM(GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLenum fillMode,
+ GLuint mask,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::StencilFillPathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::StencilFillPathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ fillMode, mask, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
+void StencilStrokePathInstancedCHROMIUM(GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLint reference,
+ GLuint mask,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::StencilStrokePathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::StencilStrokePathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ reference, mask, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
+void CoverFillPathInstancedCHROMIUM(GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLenum coverMode,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::CoverFillPathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::CoverFillPathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ coverMode, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
+void CoverStrokePathInstancedCHROMIUM(GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLenum coverMode,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::CoverStrokePathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::CoverStrokePathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ coverMode, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
+void StencilThenCoverFillPathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLenum fillMode,
+ GLuint mask,
+ GLenum coverMode,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::StencilThenCoverFillPathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::StencilThenCoverFillPathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ fillMode, mask, coverMode, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
+void StencilThenCoverStrokePathInstancedCHROMIUM(
+ GLsizei numPaths,
+ GLenum pathNameType,
+ uint32_t paths_shm_id,
+ uint32_t paths_shm_offset,
+ GLuint pathBase,
+ GLint reference,
+ GLuint mask,
+ GLenum coverMode,
+ GLenum transformType,
+ uint32_t transformValues_shm_id,
+ uint32_t transformValues_shm_offset) {
+ gles2::cmds::StencilThenCoverStrokePathInstancedCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::StencilThenCoverStrokePathInstancedCHROMIUM>();
+ if (c) {
+ c->Init(numPaths, pathNameType, paths_shm_id, paths_shm_offset, pathBase,
+ reference, mask, coverMode, transformType, transformValues_shm_id,
+ transformValues_shm_offset);
+ }
+}
+
void BlendBarrierKHR() {
gles2::cmds::BlendBarrierKHR* c = GetCmdSpace<gles2::cmds::BlendBarrierKHR>();
if (c) {
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698