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

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

Issue 13613006: Add a new parameter dest_type to the GL_CHROMIUM_copy_texture extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase the patch and solve the merge conflict issue Created 7 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // DO NOT EDIT! 7 // DO NOT EDIT!
8 8
9 // This file is included by gles2_interface.h to declare the 9 // This file is included by gles2_interface.h to declare the
10 // GL api functions. 10 // GL api functions.
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) = 0; 270 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) = 0;
271 virtual void GetTranslatedShaderSourceANGLE( 271 virtual void GetTranslatedShaderSourceANGLE(
272 GLuint shader, GLsizei bufsize, GLsizei* length, char* source) = 0; 272 GLuint shader, GLsizei bufsize, GLsizei* length, char* source) = 0;
273 virtual void PostSubBufferCHROMIUM( 273 virtual void PostSubBufferCHROMIUM(
274 GLint x, GLint y, GLint width, GLint height) = 0; 274 GLint x, GLint y, GLint width, GLint height) = 0;
275 virtual void TexImageIOSurface2DCHROMIUM( 275 virtual void TexImageIOSurface2DCHROMIUM(
276 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId, 276 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId,
277 GLuint plane) = 0; 277 GLuint plane) = 0;
278 virtual void CopyTextureCHROMIUM( 278 virtual void CopyTextureCHROMIUM(
279 GLenum target, GLenum source_id, GLenum dest_id, GLint level, 279 GLenum target, GLenum source_id, GLenum dest_id, GLint level,
280 GLint internalformat) = 0; 280 GLint internalformat, GLenum dest_type) = 0;
281 virtual void DrawArraysInstancedANGLE( 281 virtual void DrawArraysInstancedANGLE(
282 GLenum mode, GLint first, GLsizei count, GLsizei primcount) = 0; 282 GLenum mode, GLint first, GLsizei count, GLsizei primcount) = 0;
283 virtual void DrawElementsInstancedANGLE( 283 virtual void DrawElementsInstancedANGLE(
284 GLenum mode, GLsizei count, GLenum type, const void* indices, 284 GLenum mode, GLsizei count, GLenum type, const void* indices,
285 GLsizei primcount) = 0; 285 GLsizei primcount) = 0;
286 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0; 286 virtual void VertexAttribDivisorANGLE(GLuint index, GLuint divisor) = 0;
287 virtual void GenMailboxCHROMIUM(GLbyte* mailbox) = 0; 287 virtual void GenMailboxCHROMIUM(GLbyte* mailbox) = 0;
288 virtual void ProduceTextureCHROMIUM(GLenum target, const GLbyte* mailbox) = 0; 288 virtual void ProduceTextureCHROMIUM(GLenum target, const GLbyte* mailbox) = 0;
289 virtual void ConsumeTextureCHROMIUM(GLenum target, const GLbyte* mailbox) = 0; 289 virtual void ConsumeTextureCHROMIUM(GLenum target, const GLbyte* mailbox) = 0;
290 virtual void BindUniformLocationCHROMIUM( 290 virtual void BindUniformLocationCHROMIUM(
(...skipping 11 matching lines...) Expand all
302 const void* pixels) = 0; 302 const void* pixels) = 0;
303 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0; 303 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0;
304 virtual void DiscardFramebufferEXT( 304 virtual void DiscardFramebufferEXT(
305 GLenum target, GLsizei count, const GLenum* attachments) = 0; 305 GLenum target, GLsizei count, const GLenum* attachments) = 0;
306 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; 306 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0;
307 virtual GLuint InsertSyncPointCHROMIUM() = 0; 307 virtual GLuint InsertSyncPointCHROMIUM() = 0;
308 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; 308 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0;
309 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; 309 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0;
310 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 310 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
311 311
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698