OLD | NEW |
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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 } | 772 } |
773 void GLES2Uniform4iv(GLint location, GLsizei count, const GLint* v) { | 773 void GLES2Uniform4iv(GLint location, GLsizei count, const GLint* v) { |
774 gles2::GetGLContext()->Uniform4iv(location, count, v); | 774 gles2::GetGLContext()->Uniform4iv(location, count, v); |
775 } | 775 } |
776 void GLES2Uniform4ui(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) { | 776 void GLES2Uniform4ui(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) { |
777 gles2::GetGLContext()->Uniform4ui(location, x, y, z, w); | 777 gles2::GetGLContext()->Uniform4ui(location, x, y, z, w); |
778 } | 778 } |
779 void GLES2Uniform4uiv(GLint location, GLsizei count, const GLuint* v) { | 779 void GLES2Uniform4uiv(GLint location, GLsizei count, const GLuint* v) { |
780 gles2::GetGLContext()->Uniform4uiv(location, count, v); | 780 gles2::GetGLContext()->Uniform4uiv(location, count, v); |
781 } | 781 } |
| 782 void GLES2UniformBlockBinding(GLuint program, GLuint index, GLuint binding) { |
| 783 gles2::GetGLContext()->UniformBlockBinding(program, index, binding); |
| 784 } |
782 void GLES2UniformMatrix2fv(GLint location, | 785 void GLES2UniformMatrix2fv(GLint location, |
783 GLsizei count, | 786 GLsizei count, |
784 GLboolean transpose, | 787 GLboolean transpose, |
785 const GLfloat* value) { | 788 const GLfloat* value) { |
786 gles2::GetGLContext()->UniformMatrix2fv(location, count, transpose, value); | 789 gles2::GetGLContext()->UniformMatrix2fv(location, count, transpose, value); |
787 } | 790 } |
788 void GLES2UniformMatrix2x3fv(GLint location, | 791 void GLES2UniformMatrix2x3fv(GLint location, |
789 GLsizei count, | 792 GLsizei count, |
790 GLboolean transpose, | 793 GLboolean transpose, |
791 const GLfloat* value) { | 794 const GLfloat* value) { |
(...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1979 }, | 1982 }, |
1980 { | 1983 { |
1981 "glUniform4ui", | 1984 "glUniform4ui", |
1982 reinterpret_cast<GLES2FunctionPointer>(glUniform4ui), | 1985 reinterpret_cast<GLES2FunctionPointer>(glUniform4ui), |
1983 }, | 1986 }, |
1984 { | 1987 { |
1985 "glUniform4uiv", | 1988 "glUniform4uiv", |
1986 reinterpret_cast<GLES2FunctionPointer>(glUniform4uiv), | 1989 reinterpret_cast<GLES2FunctionPointer>(glUniform4uiv), |
1987 }, | 1990 }, |
1988 { | 1991 { |
| 1992 "glUniformBlockBinding", |
| 1993 reinterpret_cast<GLES2FunctionPointer>(glUniformBlockBinding), |
| 1994 }, |
| 1995 { |
1989 "glUniformMatrix2fv", | 1996 "glUniformMatrix2fv", |
1990 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2fv), | 1997 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2fv), |
1991 }, | 1998 }, |
1992 { | 1999 { |
1993 "glUniformMatrix2x3fv", | 2000 "glUniformMatrix2x3fv", |
1994 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x3fv), | 2001 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x3fv), |
1995 }, | 2002 }, |
1996 { | 2003 { |
1997 "glUniformMatrix2x4fv", | 2004 "glUniformMatrix2x4fv", |
1998 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x4fv), | 2005 reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix2x4fv), |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2411 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR), | 2418 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR), |
2412 }, | 2419 }, |
2413 { | 2420 { |
2414 NULL, | 2421 NULL, |
2415 NULL, | 2422 NULL, |
2416 }, | 2423 }, |
2417 }; | 2424 }; |
2418 | 2425 |
2419 } // namespace gles2 | 2426 } // namespace gles2 |
2420 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ | 2427 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ |
OLD | NEW |