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

Side by Side Diff: gpu/command_buffer/client/gles2_interface_stub_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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 GLint level, 350 GLint level,
351 GLint xoffset, 351 GLint xoffset,
352 GLint yoffset, 352 GLint yoffset,
353 GLint zoffset, 353 GLint zoffset,
354 GLsizei width, 354 GLsizei width,
355 GLsizei height, 355 GLsizei height,
356 GLsizei depth, 356 GLsizei depth,
357 GLenum format, 357 GLenum format,
358 GLenum type, 358 GLenum type,
359 const void* pixels) override; 359 const void* pixels) override;
360 void TransformFeedbackVaryings(GLuint program,
361 GLsizei count,
362 const char* const* varyings,
363 GLenum buffermode) override;
360 void Uniform1f(GLint location, GLfloat x) override; 364 void Uniform1f(GLint location, GLfloat x) override;
361 void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) override; 365 void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) override;
362 void Uniform1i(GLint location, GLint x) override; 366 void Uniform1i(GLint location, GLint x) override;
363 void Uniform1iv(GLint location, GLsizei count, const GLint* v) override; 367 void Uniform1iv(GLint location, GLsizei count, const GLint* v) override;
364 void Uniform1ui(GLint location, GLuint x) override; 368 void Uniform1ui(GLint location, GLuint x) override;
365 void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) override; 369 void Uniform1uiv(GLint location, GLsizei count, const GLuint* v) override;
366 void Uniform2f(GLint location, GLfloat x, GLfloat y) override; 370 void Uniform2f(GLint location, GLfloat x, GLfloat y) override;
367 void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) override; 371 void Uniform2fv(GLint location, GLsizei count, const GLfloat* v) override;
368 void Uniform2i(GLint location, GLint x, GLint y) override; 372 void Uniform2i(GLint location, GLint x, GLint y) override;
369 void Uniform2iv(GLint location, GLsizei count, const GLint* v) override; 373 void Uniform2iv(GLint location, GLsizei count, const GLint* v) override;
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 GLint bounds_height, 642 GLint bounds_height,
639 GLfloat uv_x, 643 GLfloat uv_x,
640 GLfloat uv_y, 644 GLfloat uv_y,
641 GLfloat uv_width, 645 GLfloat uv_width,
642 GLfloat uv_height) override; 646 GLfloat uv_height) override;
643 void SwapInterval(GLint interval) override; 647 void SwapInterval(GLint interval) override;
644 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 648 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
645 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 649 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
646 void BlendBarrierKHR() override; 650 void BlendBarrierKHR() override;
647 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_AUTOGEN_H_ 651 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698