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

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

Issue 878793002: Add CopyTexSubImage3D to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 GLsizei height, 106 GLsizei height,
107 GLint border) = 0; 107 GLint border) = 0;
108 virtual void CopyTexSubImage2D(GLenum target, 108 virtual void CopyTexSubImage2D(GLenum target,
109 GLint level, 109 GLint level,
110 GLint xoffset, 110 GLint xoffset,
111 GLint yoffset, 111 GLint yoffset,
112 GLint x, 112 GLint x,
113 GLint y, 113 GLint y,
114 GLsizei width, 114 GLsizei width,
115 GLsizei height) = 0; 115 GLsizei height) = 0;
116 virtual void CopyTexSubImage3D(GLenum target,
117 GLint level,
118 GLint xoffset,
119 GLint yoffset,
120 GLint zoffset,
121 GLint x,
122 GLint y,
123 GLsizei width,
124 GLsizei height) = 0;
116 virtual GLuint CreateProgram() = 0; 125 virtual GLuint CreateProgram() = 0;
117 virtual GLuint CreateShader(GLenum type) = 0; 126 virtual GLuint CreateShader(GLenum type) = 0;
118 virtual void CullFace(GLenum mode) = 0; 127 virtual void CullFace(GLenum mode) = 0;
119 virtual void DeleteBuffers(GLsizei n, const GLuint* buffers) = 0; 128 virtual void DeleteBuffers(GLsizei n, const GLuint* buffers) = 0;
120 virtual void DeleteFramebuffers(GLsizei n, const GLuint* framebuffers) = 0; 129 virtual void DeleteFramebuffers(GLsizei n, const GLuint* framebuffers) = 0;
121 virtual void DeleteProgram(GLuint program) = 0; 130 virtual void DeleteProgram(GLuint program) = 0;
122 virtual void DeleteRenderbuffers(GLsizei n, const GLuint* renderbuffers) = 0; 131 virtual void DeleteRenderbuffers(GLsizei n, const GLuint* renderbuffers) = 0;
123 virtual void DeleteSamplers(GLsizei n, const GLuint* samplers) = 0; 132 virtual void DeleteSamplers(GLsizei n, const GLuint* samplers) = 0;
124 virtual void DeleteSync(GLsync sync) = 0; 133 virtual void DeleteSync(GLsync sync) = 0;
125 virtual void DeleteShader(GLuint shader) = 0; 134 virtual void DeleteShader(GLuint shader) = 0;
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 GLint bounds_height, 662 GLint bounds_height,
654 GLfloat uv_x, 663 GLfloat uv_x,
655 GLfloat uv_y, 664 GLfloat uv_y,
656 GLfloat uv_width, 665 GLfloat uv_width,
657 GLfloat uv_height) = 0; 666 GLfloat uv_height) = 0;
658 virtual void SwapInterval(GLint interval) = 0; 667 virtual void SwapInterval(GLint interval) = 0;
659 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0; 668 virtual void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) = 0;
660 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0; 669 virtual void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) = 0;
661 virtual void BlendBarrierKHR() = 0; 670 virtual void BlendBarrierKHR() = 0;
662 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 671 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698