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

Side by Side Diff: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h

Issue 169403005: command_buffer: Implement path rendering functions for CHROMIUM_path_rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nv-pr-02-texgen
Patch Set: fix windows build Created 5 years, 5 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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 GLfloat /* uv_width */, 1283 GLfloat /* uv_width */,
1284 GLfloat /* uv_height */) { 1284 GLfloat /* uv_height */) {
1285 } 1285 }
1286 void GLES2InterfaceStub::SwapInterval(GLint /* interval */) { 1286 void GLES2InterfaceStub::SwapInterval(GLint /* interval */) {
1287 } 1287 }
1288 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */, 1288 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */,
1289 const GLfloat* /* m */) { 1289 const GLfloat* /* m */) {
1290 } 1290 }
1291 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) { 1291 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) {
1292 } 1292 }
1293 GLuint GLES2InterfaceStub::GenPathsCHROMIUM(GLsizei /* range */) {
1294 return 0;
1295 }
1296 void GLES2InterfaceStub::DeletePathsCHROMIUM(GLuint /* path */,
1297 GLsizei /* range */) {
1298 }
1299 GLboolean GLES2InterfaceStub::IsPathCHROMIUM(GLuint /* path */) {
1300 return 0;
1301 }
1302 void GLES2InterfaceStub::PathCommandsCHROMIUM(GLuint /* path */,
1303 GLsizei /* numCommands */,
1304 const GLubyte* /* commands */,
1305 GLsizei /* numCoords */,
1306 GLenum /* coordType */,
1307 const GLvoid* /* coords */) {
1308 }
1309 void GLES2InterfaceStub::PathParameterfCHROMIUM(GLuint /* path */,
1310 GLenum /* pname */,
1311 GLfloat /* value */) {
1312 }
1313 void GLES2InterfaceStub::PathParameteriCHROMIUM(GLuint /* path */,
1314 GLenum /* pname */,
1315 GLint /* value */) {
1316 }
1317 void GLES2InterfaceStub::PathStencilFuncCHROMIUM(GLenum /* func */,
1318 GLint /* ref */,
1319 GLuint /* mask */) {
1320 }
1321 void GLES2InterfaceStub::StencilFillPathCHROMIUM(GLuint /* path */,
1322 GLenum /* fillMode */,
1323 GLuint /* mask */) {
1324 }
1325 void GLES2InterfaceStub::StencilStrokePathCHROMIUM(GLuint /* path */,
1326 GLint /* reference */,
1327 GLuint /* mask */) {
1328 }
1329 void GLES2InterfaceStub::CoverFillPathCHROMIUM(GLuint /* path */,
1330 GLenum /* coverMode */) {
1331 }
1332 void GLES2InterfaceStub::CoverStrokePathCHROMIUM(GLuint /* path */,
1333 GLenum /* coverMode */) {
1334 }
1335 void GLES2InterfaceStub::StencilThenCoverFillPathCHROMIUM(
1336 GLuint /* path */,
1337 GLenum /* fillMode */,
1338 GLuint /* mask */,
1339 GLenum /* coverMode */) {
1340 }
1341 void GLES2InterfaceStub::StencilThenCoverStrokePathCHROMIUM(
1342 GLuint /* path */,
1343 GLint /* reference */,
1344 GLuint /* mask */,
1345 GLenum /* coverMode */) {
1346 }
1293 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() { 1347 GLenum GLES2InterfaceStub::GetGraphicsResetStatusKHR() {
1294 return 0; 1348 return 0;
1295 } 1349 }
1296 void GLES2InterfaceStub::BlendBarrierKHR() { 1350 void GLES2InterfaceStub::BlendBarrierKHR() {
1297 } 1351 }
1298 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 1352 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698