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

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: Created 5 years, 11 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 GLint level, 357 GLint level,
358 GLint xoffset, 358 GLint xoffset,
359 GLint yoffset, 359 GLint yoffset,
360 GLint zoffset, 360 GLint zoffset,
361 GLsizei width, 361 GLsizei width,
362 GLsizei height, 362 GLsizei height,
363 GLsizei depth, 363 GLsizei depth,
364 GLenum format, 364 GLenum format,
365 GLenum type, 365 GLenum type,
366 const void* pixels) = 0; 366 const void* pixels) = 0;
367 virtual void TransformFeedbackVaryings(GLuint program,
368 GLsizei count,
369 const char* const* varyings,
370 GLenum buffermode) = 0;
367 virtual void Uniform1f(GLint location, GLfloat x) = 0; 371 virtual void Uniform1f(GLint location, GLfloat x) = 0;
368 virtual void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) = 0; 372 virtual void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) = 0;
369 virtual void Uniform1i(GLint location, GLint x) = 0; 373 virtual void Uniform1i(GLint location, GLint x) = 0;
370 virtual void Uniform1iv(GLint location, GLsizei count, const GLint* v) = 0; 374 virtual void Uniform1iv(GLint location, GLsizei count, const GLint* v) = 0;
371 virtual void Uniform1ui(GLint location, GLuint x) = 0; 375 virtual void Uniform1ui(GLint location, GLuint x) = 0;
372 virtual void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) = 0; 376 virtual void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) = 0;
373 virtual void Uniform2f(GLint location, GLfloat x, GLfloat y) = 0; 377 virtual void Uniform2f(GLint location, GLfloat x, GLfloat y) = 0;
374 virtual void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) = 0; 378 virtual void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) = 0;
375 virtual void Uniform2i(GLint location, GLint x, GLint y) = 0; 379 virtual void Uniform2i(GLint location, GLint x, GLint y) = 0;
376 virtual void Uniform2iv(GLint location, GLsizei count, const GLint* v) = 0; 380 virtual void Uniform2iv(GLint location, GLsizei count, const GLint* v) = 0;
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 GLint bounds_height, 656 GLint bounds_height,
653 GLfloat uv_x, 657 GLfloat uv_x,
654 GLfloat uv_y, 658 GLfloat uv_y,
655 GLfloat uv_width, 659 GLfloat uv_width,
656 GLfloat uv_height) = 0; 660 GLfloat uv_height) = 0;
657 virtual void SwapInterval(GLint interval) = 0; 661 virtual void SwapInterval(GLint interval) = 0;
658 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 662 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
659 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 663 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
660 virtual void BlendBarrierKHR() = 0; 664 virtual void BlendBarrierKHR() = 0;
661 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 665 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698