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

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

Issue 18492005: Add GL_EXT_multisampled_render_to_texture support to command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved ahead to TOT Created 7 years, 5 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 virtual void VertexAttribPointer( 216 virtual void VertexAttribPointer(
217 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, 217 GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
218 const void* ptr) = 0; 218 const void* ptr) = 0;
219 virtual void Viewport(GLint x, GLint y, GLsizei width, GLsizei height) = 0; 219 virtual void Viewport(GLint x, GLint y, GLsizei width, GLsizei height) = 0;
220 virtual void BlitFramebufferEXT( 220 virtual void BlitFramebufferEXT(
221 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, 221 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
222 GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) = 0; 222 GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) = 0;
223 virtual void RenderbufferStorageMultisampleEXT( 223 virtual void RenderbufferStorageMultisampleEXT(
224 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, 224 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
225 GLsizei height) = 0; 225 GLsizei height) = 0;
226 virtual void FramebufferTexture2DMultisampleEXT(
227 GLenum target, GLenum attachment, GLenum textarget, GLuint texture,
228 GLint level, GLsizei samples) = 0;
226 virtual void TexStorage2DEXT( 229 virtual void TexStorage2DEXT(
227 GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, 230 GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width,
228 GLsizei height) = 0; 231 GLsizei height) = 0;
229 virtual void GenQueriesEXT(GLsizei n, GLuint* queries) = 0; 232 virtual void GenQueriesEXT(GLsizei n, GLuint* queries) = 0;
230 virtual void DeleteQueriesEXT(GLsizei n, const GLuint* queries) = 0; 233 virtual void DeleteQueriesEXT(GLsizei n, const GLuint* queries) = 0;
231 virtual GLboolean IsQueryEXT(GLuint id) = 0; 234 virtual GLboolean IsQueryEXT(GLuint id) = 0;
232 virtual void BeginQueryEXT(GLenum target, GLuint id) = 0; 235 virtual void BeginQueryEXT(GLenum target, GLuint id) = 0;
233 virtual void EndQueryEXT(GLenum target) = 0; 236 virtual void EndQueryEXT(GLenum target) = 0;
234 virtual void GetQueryivEXT(GLenum target, GLenum pname, GLint* params) = 0; 237 virtual void GetQueryivEXT(GLenum target, GLenum pname, GLint* params) = 0;
235 virtual void GetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint* params) = 0; 238 virtual void GetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint* params) = 0;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 const void* pixels) = 0; 314 const void* pixels) = 0;
312 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0; 315 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0;
313 virtual void DiscardFramebufferEXT( 316 virtual void DiscardFramebufferEXT(
314 GLenum target, GLsizei count, const GLenum* attachments) = 0; 317 GLenum target, GLsizei count, const GLenum* attachments) = 0;
315 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; 318 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0;
316 virtual GLuint InsertSyncPointCHROMIUM() = 0; 319 virtual GLuint InsertSyncPointCHROMIUM() = 0;
317 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; 320 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0;
318 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; 321 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0;
319 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ 322 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_
320 323
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698