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

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

Issue 872713004: Add glTransformFeedbackVaryings to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@caritas
Patch Set: Rebase 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 GLint level, 367 GLint level,
368 GLint xoffset, 368 GLint xoffset,
369 GLint yoffset, 369 GLint yoffset,
370 GLint zoffset, 370 GLint zoffset,
371 GLsizei width, 371 GLsizei width,
372 GLsizei height, 372 GLsizei height,
373 GLsizei depth, 373 GLsizei depth,
374 GLenum format, 374 GLenum format,
375 GLenum type, 375 GLenum type,
376 const void* pixels) = 0; 376 const void* pixels) = 0;
377 virtual void TransformFeedbackVaryings(GLuint program,
378 GLsizei count,
379 const char* const* varyings,
380 GLenum buffermode) = 0;
377 virtual void Uniform1f(GLint location, GLfloat x) = 0; 381 virtual void Uniform1f(GLint location, GLfloat x) = 0;
378 virtual void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) = 0; 382 virtual void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) = 0;
379 virtual void Uniform1i(GLint location, GLint x) = 0; 383 virtual void Uniform1i(GLint location, GLint x) = 0;
380 virtual void Uniform1iv(GLint location, GLsizei count, const GLint* v) = 0; 384 virtual void Uniform1iv(GLint location, GLsizei count, const GLint* v) = 0;
381 virtual void Uniform1ui(GLint location, GLuint x) = 0; 385 virtual void Uniform1ui(GLint location, GLuint x) = 0;
382 virtual void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) = 0; 386 virtual void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) = 0;
383 virtual void Uniform2f(GLint location, GLfloat x, GLfloat y) = 0; 387 virtual void Uniform2f(GLint location, GLfloat x, GLfloat y) = 0;
384 virtual void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) = 0; 388 virtual void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) = 0;
385 virtual void Uniform2i(GLint location, GLint x, GLint y) = 0; 389 virtual void Uniform2i(GLint location, GLint x, GLint y) = 0;
386 virtual void Uniform2iv(GLint location, GLsizei count, const GLint* v) = 0; 390 virtual void Uniform2iv(GLint location, GLsizei count, const GLint* v) = 0;
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 GLint bounds_height, 666 GLint bounds_height,
663 GLfloat uv_x, 667 GLfloat uv_x,
664 GLfloat uv_y, 668 GLfloat uv_y,
665 GLfloat uv_width, 669 GLfloat uv_width,
666 GLfloat uv_height) = 0; 670 GLfloat uv_height) = 0;
667 virtual void SwapInterval(GLint interval) = 0; 671 virtual void SwapInterval(GLint interval) = 0;
668 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 672 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
669 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 673 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
670 virtual void BlendBarrierKHR() = 0; 674 virtual void BlendBarrierKHR() = 0;
671 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 675 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698