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

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: improve parameter validation and write up the extension .txt file Created 6 years, 8 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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 GLfloat /* uv_x */, 849 GLfloat /* uv_x */,
850 GLfloat /* uv_y */, 850 GLfloat /* uv_y */,
851 GLfloat /* uv_width */, 851 GLfloat /* uv_width */,
852 GLfloat /* uv_height */) { 852 GLfloat /* uv_height */) {
853 } 853 }
854 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */, 854 void GLES2InterfaceStub::MatrixLoadfCHROMIUM(GLenum /* matrixMode */,
855 const GLfloat* /* m */) { 855 const GLfloat* /* m */) {
856 } 856 }
857 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) { 857 void GLES2InterfaceStub::MatrixLoadIdentityCHROMIUM(GLenum /* matrixMode */) {
858 } 858 }
859 GLuint GLES2InterfaceStub::GenPathsCHROMIUM(GLsizei /* range */) {
860 return 0;
861 }
862 void GLES2InterfaceStub::DeletePathsCHROMIUM(GLuint /* path */,
863 GLsizei /* range */) {
864 }
865 void GLES2InterfaceStub::PathCommandsCHROMIUM(GLuint /* path */,
866 GLsizei /* numCommands */,
867 const GLubyte* /* commands */,
868 GLsizei /* numCoords */,
869 GLenum /* coordType */,
870 const void* /* coords */) {
871 }
872 void GLES2InterfaceStub::PathParameterfCHROMIUM(GLuint /* path */,
873 GLenum /* pname */,
874 GLfloat /* value */) {
875 }
876 void GLES2InterfaceStub::PathParameteriCHROMIUM(GLuint /* path */,
877 GLenum /* pname */,
878 GLint /* value */) {
879 }
880 void GLES2InterfaceStub::PathStencilFuncCHROMIUM(GLenum /* func */,
881 GLint /* ref */,
882 GLuint /* mask */) {
883 }
884 void GLES2InterfaceStub::StencilFillPathCHROMIUM(GLuint /* path */,
885 GLenum /* fillMode */,
886 GLuint /* mask */) {
887 }
888 void GLES2InterfaceStub::StencilFillPathInstancedCHROMIUM(
889 GLsizei /* numPaths */,
890 GLenum /* pathNameType */,
891 const void* /* paths */,
892 GLuint /* pathBase */,
893 GLenum /* fillMode */,
894 GLuint /* mask */,
895 GLenum /* transformType */,
896 const GLfloat* /* transformValues */) {
897 }
898 void GLES2InterfaceStub::StencilStrokePathCHROMIUM(GLuint /* path */,
899 GLint /* reference */,
900 GLuint /* mask */) {
901 }
902 void GLES2InterfaceStub::StencilStrokePathInstancedCHROMIUM(
903 GLsizei /* numPaths */,
904 GLenum /* pathNameType */,
905 const void* /* paths */,
906 GLuint /* pathBase */,
907 GLint /* ref */,
908 GLuint /* mask */,
909 GLenum /* transformType */,
910 const GLfloat* /* transformValues */) {
911 }
912 void GLES2InterfaceStub::PathTexGenCHROMIUM(GLenum /* texCoordSet */,
913 GLenum /* genMode */,
914 GLint /* components */,
915 const GLfloat* /* coeffs */) {
916 }
917 void GLES2InterfaceStub::CoverFillPathCHROMIUM(GLuint /* path */,
918 GLenum /* coverMode */) {
919 }
920 void GLES2InterfaceStub::CoverFillPathInstancedCHROMIUM(
921 GLsizei /* numPaths */,
922 GLenum /* pathNameType */,
923 const void* /* paths */,
924 GLuint /* pathBase */,
925 GLenum /* coverMode */,
926 GLenum /* transformType */,
927 const GLfloat* /* transformValues */) {
928 }
929 void GLES2InterfaceStub::CoverStrokePathCHROMIUM(GLuint /* path */,
930 GLenum /* coverMode */) {
931 }
932 void GLES2InterfaceStub::CoverStrokePathInstancedCHROMIUM(
933 GLsizei /* numPaths */,
934 GLenum /* pathNameType */,
935 const void* /* paths */,
936 GLuint /* pathBase */,
937 GLenum /* coverMode */,
938 GLenum /* transformType */,
939 const GLfloat* /* transformValues */) {
940 }
859 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 941 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698