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

Side by Side Diff: gpu/command_buffer/client/gles2_interface_stub_impl_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, 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 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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 void GLES2InterfaceStub::StencilThenCoverFillPathCHROMIUM( 1077 void GLES2InterfaceStub::StencilThenCoverFillPathCHROMIUM(
1078 GLuint /* path */, 1078 GLuint /* path */,
1079 GLenum /* fillMode */, 1079 GLenum /* fillMode */,
1080 GLuint /* mask */, 1080 GLuint /* mask */,
1081 GLenum /* coverMode */) {} 1081 GLenum /* coverMode */) {}
1082 void GLES2InterfaceStub::StencilThenCoverStrokePathCHROMIUM( 1082 void GLES2InterfaceStub::StencilThenCoverStrokePathCHROMIUM(
1083 GLuint /* path */, 1083 GLuint /* path */,
1084 GLint /* reference */, 1084 GLint /* reference */,
1085 GLuint /* mask */, 1085 GLuint /* mask */,
1086 GLenum /* coverMode */) {} 1086 GLenum /* coverMode */) {}
1087 void GLES2InterfaceStub::StencilFillPathInstancedCHROMIUM(
1088 GLsizei /* numPaths */,
1089 GLenum /* pathNameType */,
1090 const GLvoid* /* paths */,
1091 GLuint /* pathBase */,
1092 GLenum /* fillMode */,
1093 GLuint /* mask */,
1094 GLenum /* transformType */,
1095 const GLfloat* /* transformValues */) {}
1096 void GLES2InterfaceStub::StencilStrokePathInstancedCHROMIUM(
1097 GLsizei /* numPaths */,
1098 GLenum /* pathNameType */,
1099 const GLvoid* /* paths */,
1100 GLuint /* pathBase */,
1101 GLint /* reference */,
1102 GLuint /* mask */,
1103 GLenum /* transformType */,
1104 const GLfloat* /* transformValues */) {}
1105 void GLES2InterfaceStub::CoverFillPathInstancedCHROMIUM(
1106 GLsizei /* numPaths */,
1107 GLenum /* pathNameType */,
1108 const GLvoid* /* paths */,
1109 GLuint /* pathBase */,
1110 GLenum /* coverMode */,
1111 GLenum /* transformType */,
1112 const GLfloat* /* transformValues */) {}
1113 void GLES2InterfaceStub::CoverStrokePathInstancedCHROMIUM(
1114 GLsizei /* numPaths */,
1115 GLenum /* pathNameType */,
1116 const GLvoid* /* paths */,
1117 GLuint /* pathBase */,
1118 GLenum /* coverMode */,
1119 GLenum /* transformType */,
1120 const GLfloat* /* transformValues */) {}
1121 void GLES2InterfaceStub::StencilThenCoverFillPathInstancedCHROMIUM(
1122 GLsizei /* numPaths */,
1123 GLenum /* pathNameType */,
1124 const GLvoid* /* paths */,
1125 GLuint /* pathBase */,
1126 GLenum /* fillMode */,
1127 GLuint /* mask */,
1128 GLenum /* coverMode */,
1129 GLenum /* transformType */,
1130 const GLfloat* /* transformValues */) {}
1131 void GLES2InterfaceStub::StencilThenCoverStrokePathInstancedCHROMIUM(
1132 GLsizei /* numPaths */,
1133 GLenum /* pathNameType */,
1134 const GLvoid* /* paths */,
1135 GLuint /* pathBase */,
1136 GLint /* reference */,
1137 GLuint /* mask */,
1138 GLenum /* coverMode */,
1139 GLenum /* transformType */,
1140 const GLfloat* /* transformValues */) {}
1087 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() { 1141 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() {
1088 return 0; 1142 return 0;
1089 } 1143 }
1090 void GLES2InterfaceStub::BlendBarrierKHR() {} 1144 void GLES2InterfaceStub::BlendBarrierKHR() {}
1091 void GLES2InterfaceStub::ApplyScreenSpaceAntialiasingCHROMIUM() {} 1145 void GLES2InterfaceStub::ApplyScreenSpaceAntialiasingCHROMIUM() {}
1092 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 1146 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698