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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 GLint xoffset, 490 GLint xoffset,
491 GLint yoffset, 491 GLint yoffset,
492 GLint zoffset, 492 GLint zoffset,
493 GLsizei width, 493 GLsizei width,
494 GLsizei height, 494 GLsizei height,
495 GLsizei depth, 495 GLsizei depth,
496 GLenum format, 496 GLenum format,
497 GLenum type, 497 GLenum type,
498 const void* pixels) override; 498 const void* pixels) override;
499 499
500 void TransformFeedbackVaryings(GLuint program,
501 GLsizei count,
502 const char* const* varyings,
503 GLenum buffermode) override;
504
500 void Uniform1f(GLint location, GLfloat x) override; 505 void Uniform1f(GLint location, GLfloat x) override;
501 506
502 void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) override; 507 void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) override;
503 508
504 void Uniform1i(GLint location, GLint x) override; 509 void Uniform1i(GLint location, GLint x) override;
505 510
506 void Uniform1iv(GLint location, GLsizei count, const GLint* v) override; 511 void Uniform1iv(GLint location, GLsizei count, const GLint* v) override;
507 512
508 void Uniform1ui(GLint location, GLuint x) override; 513 void Uniform1ui(GLint location, GLuint x) override;
509 514
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 911
907 void SwapInterval(GLint interval) override; 912 void SwapInterval(GLint interval) override;
908 913
909 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 914 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
910 915
911 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 916 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
912 917
913 void BlendBarrierKHR() override; 918 void BlendBarrierKHR() override;
914 919
915 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 920 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698