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

Side by Side Diff: gpu/command_buffer/client/gles2_interface_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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 GLenum type, 264 GLenum type,
265 const void* pixels) = 0; 265 const void* pixels) = 0;
266 virtual void TexParameterf(GLenum target, GLenum pname, GLfloat param) = 0; 266 virtual void TexParameterf(GLenum target, GLenum pname, GLfloat param) = 0;
267 virtual void TexParameterfv(GLenum target, 267 virtual void TexParameterfv(GLenum target,
268 GLenum pname, 268 GLenum pname,
269 const GLfloat* params) = 0; 269 const GLfloat* params) = 0;
270 virtual void TexParameteri(GLenum target, GLenum pname, GLint param) = 0; 270 virtual void TexParameteri(GLenum target, GLenum pname, GLint param) = 0;
271 virtual void TexParameteriv(GLenum target, 271 virtual void TexParameteriv(GLenum target,
272 GLenum pname, 272 GLenum pname,
273 const GLint* params) = 0; 273 const GLint* params) = 0;
274 virtual void TexStorage3D(GLenum target,
275 GLsizei levels,
276 GLenum internalFormat,
277 GLsizei width,
278 GLsizei height,
279 GLsizei depth) = 0;
274 virtual void TexSubImage2D(GLenum target, 280 virtual void TexSubImage2D(GLenum target,
275 GLint level, 281 GLint level,
276 GLint xoffset, 282 GLint xoffset,
277 GLint yoffset, 283 GLint yoffset,
278 GLsizei width, 284 GLsizei width,
279 GLsizei height, 285 GLsizei height,
280 GLenum format, 286 GLenum format,
281 GLenum type, 287 GLenum type,
282 const void* pixels) = 0; 288 const void* pixels) = 0;
283 virtual void Uniform1f(GLint location, GLfloat x) = 0; 289 virtual void Uniform1f(GLint location, GLfloat x) = 0;
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 GLint bounds_width, 570 GLint bounds_width,
565 GLint bounds_height, 571 GLint bounds_height,
566 GLfloat uv_x, 572 GLfloat uv_x,
567 GLfloat uv_y, 573 GLfloat uv_y,
568 GLfloat uv_width, 574 GLfloat uv_width,
569 GLfloat uv_height) = 0; 575 GLfloat uv_height) = 0;
570 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 576 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
571 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 577 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
572 virtual void BlendBarrierKHR() = 0; 578 virtual void BlendBarrierKHR() = 0;
573 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 579 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698