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

Side by Side Diff: mojo/gpu/mojo_gles2_impl_autogen.h

Issue 1136713003: Add ES3 commands GetVertexAttribI{u}iv to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 void GetUniformfv(GLuint program, GLint location, GLfloat* params) override; 309 void GetUniformfv(GLuint program, GLint location, GLfloat* params) override;
310 void GetUniformiv(GLuint program, GLint location, GLint* params) override; 310 void GetUniformiv(GLuint program, GLint location, GLint* params) override;
311 void GetUniformuiv(GLuint program, GLint location, GLuint* params) override; 311 void GetUniformuiv(GLuint program, GLint location, GLuint* params) override;
312 void GetUniformIndices(GLuint program, 312 void GetUniformIndices(GLuint program,
313 GLsizei count, 313 GLsizei count,
314 const char* const* names, 314 const char* const* names,
315 GLuint* indices) override; 315 GLuint* indices) override;
316 GLint GetUniformLocation(GLuint program, const char* name) override; 316 GLint GetUniformLocation(GLuint program, const char* name) override;
317 void GetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params) override; 317 void GetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params) override;
318 void GetVertexAttribiv(GLuint index, GLenum pname, GLint* params) override; 318 void GetVertexAttribiv(GLuint index, GLenum pname, GLint* params) override;
319 void GetVertexAttribIiv(GLuint index, GLenum pname, GLint* params) override;
320 void GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint* params) override;
319 void GetVertexAttribPointerv(GLuint index, 321 void GetVertexAttribPointerv(GLuint index,
320 GLenum pname, 322 GLenum pname,
321 void** pointer) override; 323 void** pointer) override;
322 void Hint(GLenum target, GLenum mode) override; 324 void Hint(GLenum target, GLenum mode) override;
323 void InvalidateFramebuffer(GLenum target, 325 void InvalidateFramebuffer(GLenum target,
324 GLsizei count, 326 GLsizei count,
325 const GLenum* attachments) override; 327 const GLenum* attachments) override;
326 void InvalidateSubFramebuffer(GLenum target, 328 void InvalidateSubFramebuffer(GLenum target,
327 GLsizei count, 329 GLsizei count,
328 const GLenum* attachments, 330 const GLenum* attachments,
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 771 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
770 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 772 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
771 void BlendBarrierKHR() override; 773 void BlendBarrierKHR() override;
772 774
773 private: 775 private:
774 MojoGLES2Context context_; 776 MojoGLES2Context context_;
775 }; 777 };
776 778
777 } // namespace mojo 779 } // namespace mojo
778 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_ 780 #endif // MOJO_GPU_MOJO_GLES2_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698