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

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

Issue 740083003: Add unsafe ES3 APIs to command buffer: glTexStorage3D (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cb
Patch Set: Created 6 years 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 void TexParameterf(GLenum target, GLenum pname, GLfloat param) override; 365 void TexParameterf(GLenum target, GLenum pname, GLfloat param) override;
366 366
367 void TexParameterfv(GLenum target, 367 void TexParameterfv(GLenum target,
368 GLenum pname, 368 GLenum pname,
369 const GLfloat* params) override; 369 const GLfloat* params) override;
370 370
371 void TexParameteri(GLenum target, GLenum pname, GLint param) override; 371 void TexParameteri(GLenum target, GLenum pname, GLint param) override;
372 372
373 void TexParameteriv(GLenum target, GLenum pname, const GLint* params) override; 373 void TexParameteriv(GLenum target, GLenum pname, const GLint* params) override;
374 374
375 void TexStorage3D(GLenum target,
376 GLsizei levels,
377 GLenum internalFormat,
378 GLsizei width,
379 GLsizei height,
380 GLsizei depth) override;
381
375 void TexSubImage2D(GLenum target, 382 void TexSubImage2D(GLenum target,
376 GLint level, 383 GLint level,
377 GLint xoffset, 384 GLint xoffset,
378 GLint yoffset, 385 GLint yoffset,
379 GLsizei width, 386 GLsizei width,
380 GLsizei height, 387 GLsizei height,
381 GLenum format, 388 GLenum format,
382 GLenum type, 389 GLenum type,
383 const void* pixels) override; 390 const void* pixels) override;
384 391
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 GLfloat uv_width, 791 GLfloat uv_width,
785 GLfloat uv_height) override; 792 GLfloat uv_height) override;
786 793
787 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; 794 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override;
788 795
789 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; 796 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override;
790 797
791 void BlendBarrierKHR() override; 798 void BlendBarrierKHR() override;
792 799
793 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 800 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_cmd_helper_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation_impl_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698