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

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

Issue 1559203003: Add GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added enum, removed count parameter. Created 4 years, 10 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 void UniformMatrix4x2fv(GLint location, 693 void UniformMatrix4x2fv(GLint location,
694 GLsizei count, 694 GLsizei count,
695 GLboolean transpose, 695 GLboolean transpose,
696 const GLfloat* value) override; 696 const GLfloat* value) override;
697 697
698 void UniformMatrix4x3fv(GLint location, 698 void UniformMatrix4x3fv(GLint location,
699 GLsizei count, 699 GLsizei count,
700 GLboolean transpose, 700 GLboolean transpose,
701 const GLfloat* value) override; 701 const GLfloat* value) override;
702 702
703 void UniformMatrix4fvWithCustomMatrixCHROMIUM(
704 GLint location,
705 GLenum custom_matrix,
706 GLboolean transpose,
707 const GLfloat* default_value) override;
708
703 void UseProgram(GLuint program) override; 709 void UseProgram(GLuint program) override;
704 710
705 void ValidateProgram(GLuint program) override; 711 void ValidateProgram(GLuint program) override;
706 712
707 void VertexAttrib1f(GLuint indx, GLfloat x) override; 713 void VertexAttrib1f(GLuint indx, GLfloat x) override;
708 714
709 void VertexAttrib1fv(GLuint indx, const GLfloat* values) override; 715 void VertexAttrib1fv(GLuint indx, const GLfloat* values) override;
710 716
711 void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) override; 717 void VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) override;
712 718
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
1179 GLuint index, 1185 GLuint index,
1180 const char* name) override; 1186 const char* name) override;
1181 1187
1182 void BindFragDataLocationEXT(GLuint program, 1188 void BindFragDataLocationEXT(GLuint program,
1183 GLuint colorNumber, 1189 GLuint colorNumber,
1184 const char* name) override; 1190 const char* name) override;
1185 1191
1186 GLint GetFragDataIndexEXT(GLuint program, const char* name) override; 1192 GLint GetFragDataIndexEXT(GLuint program, const char* name) override;
1187 1193
1188 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1194 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698