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

Side by Side Diff: gpu/command_buffer/client/gles2_trace_implementation_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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 void GetUniformfv(GLuint program, GLint location, GLfloat* params) override; 295 void GetUniformfv(GLuint program, GLint location, GLfloat* params) override;
296 void GetUniformiv(GLuint program, GLint location, GLint* params) override; 296 void GetUniformiv(GLuint program, GLint location, GLint* params) override;
297 void GetUniformuiv(GLuint program, GLint location, GLuint* params) override; 297 void GetUniformuiv(GLuint program, GLint location, GLuint* params) override;
298 void GetUniformIndices(GLuint program, 298 void GetUniformIndices(GLuint program,
299 GLsizei count, 299 GLsizei count,
300 const char* const* names, 300 const char* const* names,
301 GLuint* indices) override; 301 GLuint* indices) override;
302 GLint GetUniformLocation(GLuint program, const char* name) override; 302 GLint GetUniformLocation(GLuint program, const char* name) override;
303 void GetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params) override; 303 void GetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params) override;
304 void GetVertexAttribiv(GLuint index, GLenum pname, GLint* params) override; 304 void GetVertexAttribiv(GLuint index, GLenum pname, GLint* params) override;
305 void GetVertexAttribIiv(GLuint index, GLenum pname, GLint* params) override;
306 void GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint* params) override;
305 void GetVertexAttribPointerv(GLuint index, 307 void GetVertexAttribPointerv(GLuint index,
306 GLenum pname, 308 GLenum pname,
307 void** pointer) override; 309 void** pointer) override;
308 void Hint(GLenum target, GLenum mode) override; 310 void Hint(GLenum target, GLenum mode) override;
309 void InvalidateFramebuffer(GLenum target, 311 void InvalidateFramebuffer(GLenum target,
310 GLsizei count, 312 GLsizei count,
311 const GLenum* attachments) override; 313 const GLenum* attachments) override;
312 void InvalidateSubFramebuffer(GLenum target, 314 void InvalidateSubFramebuffer(GLenum target,
313 GLsizei count, 315 GLsizei count,
314 const GLenum* attachments, 316 const GLenum* attachments,
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 GLint bounds_height, 740 GLint bounds_height,
739 GLfloat uv_x, 741 GLfloat uv_x,
740 GLfloat uv_y, 742 GLfloat uv_y,
741 GLfloat uv_width, 743 GLfloat uv_width,
742 GLfloat uv_height) override; 744 GLfloat uv_height) override;
743 void SwapInterval(GLint interval) override; 745 void SwapInterval(GLint interval) override;
744 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 746 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
745 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 747 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
746 void BlendBarrierKHR() override; 748 void BlendBarrierKHR() override;
747 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_ 749 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698