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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_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: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 void StencilThenCoverFillPathCHROMIUM(GLuint path, 1085 void StencilThenCoverFillPathCHROMIUM(GLuint path,
1086 GLenum fillMode, 1086 GLenum fillMode,
1087 GLuint mask, 1087 GLuint mask,
1088 GLenum coverMode) override; 1088 GLenum coverMode) override;
1089 1089
1090 void StencilThenCoverStrokePathCHROMIUM(GLuint path, 1090 void StencilThenCoverStrokePathCHROMIUM(GLuint path,
1091 GLint reference, 1091 GLint reference,
1092 GLuint mask, 1092 GLuint mask,
1093 GLenum coverMode) override; 1093 GLenum coverMode) override;
1094 1094
1095 void StencilFillPathInstancedCHROMIUM(GLsizei numPaths,
1096 GLenum pathNameType,
1097 const GLvoid* paths,
1098 GLuint pathBase,
1099 GLenum fillMode,
1100 GLuint mask,
1101 GLenum transformType,
1102 const GLfloat* transformValues) override;
1103
1104 void StencilStrokePathInstancedCHROMIUM(
1105 GLsizei numPaths,
1106 GLenum pathNameType,
1107 const GLvoid* paths,
1108 GLuint pathBase,
1109 GLint reference,
1110 GLuint mask,
1111 GLenum transformType,
1112 const GLfloat* transformValues) override;
1113
1114 void CoverFillPathInstancedCHROMIUM(GLsizei numPaths,
1115 GLenum pathNameType,
1116 const GLvoid* paths,
1117 GLuint pathBase,
1118 GLenum coverMode,
1119 GLenum transformType,
1120 const GLfloat* transformValues) override;
1121
1122 void CoverStrokePathInstancedCHROMIUM(GLsizei numPaths,
1123 GLenum pathNameType,
1124 const GLvoid* paths,
1125 GLuint pathBase,
1126 GLenum coverMode,
1127 GLenum transformType,
1128 const GLfloat* transformValues) override;
1129
1130 void StencilThenCoverFillPathInstancedCHROMIUM(
1131 GLsizei numPaths,
1132 GLenum pathNameType,
1133 const GLvoid* paths,
1134 GLuint pathBase,
1135 GLenum fillMode,
1136 GLuint mask,
1137 GLenum coverMode,
1138 GLenum transformType,
1139 const GLfloat* transformValues) override;
1140
1141 void StencilThenCoverStrokePathInstancedCHROMIUM(
1142 GLsizei numPaths,
1143 GLenum pathNameType,
1144 const GLvoid* paths,
1145 GLuint pathBase,
1146 GLint reference,
1147 GLuint mask,
1148 GLenum coverMode,
1149 GLenum transformType,
1150 const GLfloat* transformValues) override;
1151
1095 GLenum GetGraphicsResetStatusKHR() override; 1152 GLenum GetGraphicsResetStatusKHR() override;
1096 1153
1097 void BlendBarrierKHR() override; 1154 void BlendBarrierKHR() override;
1098 1155
1099 void ApplyScreenSpaceAntialiasingCHROMIUM() override; 1156 void ApplyScreenSpaceAntialiasingCHROMIUM() override;
1100 1157
1101 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1158 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698