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

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: rebase and cleanup ids Created 6 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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 GLfloat /* uv_x */, 846 GLfloat /* uv_x */,
847 GLfloat /* uv_y */, 847 GLfloat /* uv_y */,
848 GLfloat /* uv_width */, 848 GLfloat /* uv_width */,
849 GLfloat /* uv_height */) { 849 GLfloat /* uv_height */) {
850 } 850 }
851 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */, 851 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */,
852 const GLfloat* /* m */) { 852 const GLfloat* /* m */) {
853 } 853 }
854 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) { 854 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) {
855 } 855 }
856 GLuint GLES2InterfaceStub::GenPathsCHROMIUM(GLsizei /* range */) {
857 return 0;
858 }
859 void GLES2InterfaceStub::DeletePathsCHROMIUM(GLuint /* path */,
860 GLsizei /* range */) {
861 }
862 GLboolean GLES2InterfaceStub::IsPathCHROMIUM(GLuint /* path */) {
863 return 0;
864 }
865 void GLES2InterfaceStub::PathCommandsCHROMIUM(GLuint /* path */,
866 GLsizei /* numCommands */,
867 const GLubyte* /* commands */,
868 GLsizei /* numCoords */,
869 const GLfloat* /* coords */) {
870 }
871 void GLES2InterfaceStub::PathParameterfCHROMIUM(GLuint /* path */,
872 GLenum /* pname */,
873 GLfloat /* value */) {
874 }
875 void GLES2InterfaceStub::PathParameteriCHROMIUM(GLuint /* path */,
876 GLenum /* pname */,
877 GLint /* value */) {
878 }
879 void GLES2InterfaceStub::PathStencilFuncCHROMIUM(GLenum /* func */,
880 GLint /* ref */,
881 GLuint /* mask */) {
882 }
883 void GLES2InterfaceStub::StencilFillPathCHROMIUM(GLuint /* path */,
884 GLenum /* fillMode */,
885 GLuint /* mask */) {
886 }
887 void GLES2InterfaceStub::StencilStrokePathCHROMIUM(GLuint /* path */,
888 GLint /* reference */,
889 GLuint /* mask */) {
890 }
891 void GLES2InterfaceStub::CoverFillPathCHROMIUM(GLuint /* path */) {
892 }
893 void GLES2InterfaceStub::CoverStrokePathCHROMIUM(GLuint /* path */) {
894 }
895 void GLES2InterfaceStub::StencilThenCoverFillPathCHROMIUM(GLuint /* path */,
896 GLenum /* fillMode */,
897 GLuint /* mask */) {
898 }
899 void GLES2InterfaceStub::StencilThenCoverStrokePathCHROMIUM(
900 GLuint /* path */,
901 GLint /* reference */,
902 GLuint /* mask */) {
903 }
856 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 904 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698