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

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

Issue 921023002: Add glGetActiveUniformsiv to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@uniform
Patch Set: Created 5 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 char* name) override; 187 char* name) override;
188 void GetActiveUniformBlockiv(GLuint program, 188 void GetActiveUniformBlockiv(GLuint program,
189 GLuint index, 189 GLuint index,
190 GLenum pname, 190 GLenum pname,
191 GLint* params) override; 191 GLint* params) override;
192 void GetActiveUniformBlockName(GLuint program, 192 void GetActiveUniformBlockName(GLuint program,
193 GLuint index, 193 GLuint index,
194 GLsizei bufsize, 194 GLsizei bufsize,
195 GLsizei* length, 195 GLsizei* length,
196 char* name) override; 196 char* name) override;
197 void GetActiveUniformsiv(GLuint program,
198 GLsizei count,
199 const GLuint* indices,
200 GLenum pname,
201 GLint* params) override;
197 void GetAttachedShaders(GLuint program, 202 void GetAttachedShaders(GLuint program,
198 GLsizei maxcount, 203 GLsizei maxcount,
199 GLsizei* count, 204 GLsizei* count,
200 GLuint* shaders) override; 205 GLuint* shaders) override;
201 GLint GetAttribLocation(GLuint program, const char* name) override; 206 GLint GetAttribLocation(GLuint program, const char* name) override;
202 void GetBooleanv(GLenum pname, GLboolean* params) override; 207 void GetBooleanv(GLenum pname, GLboolean* params) override;
203 void GetBufferParameteriv(GLenum target, GLenum pname, GLint* params) override; 208 void GetBufferParameteriv(GLenum target, GLenum pname, GLint* params) override;
204 GLenum GetError() override; 209 GLenum GetError() override;
205 void GetFloatv(GLenum pname, GLfloat* params) override; 210 void GetFloatv(GLenum pname, GLfloat* params) override;
206 GLint GetFragDataLocation(GLuint program, const char* name) override; 211 GLint GetFragDataLocation(GLuint program, const char* name) override;
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 GLsizei* size, 580 GLsizei* size,
576 void* info) override; 581 void* info) override;
577 void GetUniformBlocksCHROMIUM(GLuint program, 582 void GetUniformBlocksCHROMIUM(GLuint program,
578 GLsizei bufsize, 583 GLsizei bufsize,
579 GLsizei* size, 584 GLsizei* size,
580 void* info) override; 585 void* info) override;
581 void GetTransformFeedbackVaryingsCHROMIUM(GLuint program, 586 void GetTransformFeedbackVaryingsCHROMIUM(GLuint program,
582 GLsizei bufsize, 587 GLsizei bufsize,
583 GLsizei* size, 588 GLsizei* size,
584 void* info) override; 589 void* info) override;
590 void GetUniformsES3CHROMIUM(GLuint program,
591 GLsizei bufsize,
592 GLsizei* size,
593 void* info) override;
585 GLuint CreateStreamTextureCHROMIUM(GLuint texture) override; 594 GLuint CreateStreamTextureCHROMIUM(GLuint texture) override;
586 GLuint CreateImageCHROMIUM(ClientBuffer buffer, 595 GLuint CreateImageCHROMIUM(ClientBuffer buffer,
587 GLsizei width, 596 GLsizei width,
588 GLsizei height, 597 GLsizei height,
589 GLenum internalformat) override; 598 GLenum internalformat) override;
590 void DestroyImageCHROMIUM(GLuint image_id) override; 599 void DestroyImageCHROMIUM(GLuint image_id) override;
591 GLuint CreateGpuMemoryBufferImageCHROMIUM(GLsizei width, 600 GLuint CreateGpuMemoryBufferImageCHROMIUM(GLsizei width,
592 GLsizei height, 601 GLsizei height,
593 GLenum internalformat, 602 GLenum internalformat,
594 GLenum usage) override; 603 GLenum usage) override;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 GLint bounds_height, 692 GLint bounds_height,
684 GLfloat uv_x, 693 GLfloat uv_x,
685 GLfloat uv_y, 694 GLfloat uv_y,
686 GLfloat uv_width, 695 GLfloat uv_width,
687 GLfloat uv_height) override; 696 GLfloat uv_height) override;
688 void SwapInterval(GLint interval) override; 697 void SwapInterval(GLint interval) override;
689 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 698 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
690 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 699 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
691 void BlendBarrierKHR() override; 700 void BlendBarrierKHR() override;
692 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_ 701 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698