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

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

Issue 754873002: Add a second unsafe ES3 API in command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 const void* data) = 0; 64 const void* data) = 0;
65 virtual void CompressedTexSubImage2D(GLenum target, 65 virtual void CompressedTexSubImage2D(GLenum target,
66 GLint level, 66 GLint level,
67 GLint xoffset, 67 GLint xoffset,
68 GLint yoffset, 68 GLint yoffset,
69 GLsizei width, 69 GLsizei width,
70 GLsizei height, 70 GLsizei height,
71 GLenum format, 71 GLenum format,
72 GLsizei imageSize, 72 GLsizei imageSize,
73 const void* data) = 0; 73 const void* data) = 0;
74 virtual void CopyBufferSubData(GLenum readtarget,
75 GLenum writetarget,
76 GLintptr readoffset,
77 GLintptr writeoffset,
78 GLsizeiptr size) = 0;
74 virtual void CopyTexImage2D(GLenum target, 79 virtual void CopyTexImage2D(GLenum target,
75 GLint level, 80 GLint level,
76 GLenum internalformat, 81 GLenum internalformat,
77 GLint x, 82 GLint x,
78 GLint y, 83 GLint y,
79 GLsizei width, 84 GLsizei width,
80 GLsizei height, 85 GLsizei height,
81 GLint border) = 0; 86 GLint border) = 0;
82 virtual void CopyTexSubImage2D(GLenum target, 87 virtual void CopyTexSubImage2D(GLenum target,
83 GLint level, 88 GLint level,
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 GLint bounds_width, 506 GLint bounds_width,
502 GLint bounds_height, 507 GLint bounds_height,
503 GLfloat uv_x, 508 GLfloat uv_x,
504 GLfloat uv_y, 509 GLfloat uv_y,
505 GLfloat uv_width, 510 GLfloat uv_width,
506 GLfloat uv_height) = 0; 511 GLfloat uv_height) = 0;
507 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 512 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
508 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 513 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
509 virtual void BlendBarrierKHR() = 0; 514 virtual void BlendBarrierKHR() = 0;
510 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 515 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698