| OLD | NEW |
| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) = 0; | 253 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) = 0; |
| 254 virtual void* MapImageCHROMIUM(GLuint image_id, GLenum access) = 0; | 254 virtual void* MapImageCHROMIUM(GLuint image_id, GLenum access) = 0; |
| 255 virtual void UnmapImageCHROMIUM(GLuint image_id) = 0; | 255 virtual void UnmapImageCHROMIUM(GLuint image_id) = 0; |
| 256 virtual void* MapBufferSubDataCHROMIUM( | 256 virtual void* MapBufferSubDataCHROMIUM( |
| 257 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) = 0; | 257 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) = 0; |
| 258 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) = 0; | 258 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) = 0; |
| 259 virtual void* MapTexSubImage2DCHROMIUM( | 259 virtual void* MapTexSubImage2DCHROMIUM( |
| 260 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, | 260 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, |
| 261 GLsizei height, GLenum format, GLenum type, GLenum access) = 0; | 261 GLsizei height, GLenum format, GLenum type, GLenum access) = 0; |
| 262 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) = 0; | 262 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) = 0; |
| 263 virtual void ResizeCHROMIUM(GLuint width, GLuint height) = 0; | 263 virtual void ResizeCHROMIUM(GLuint width, GLuint height, GLfloat scale_factor) = |
| 264 0; |
| 264 virtual const GLchar* GetRequestableExtensionsCHROMIUM() = 0; | 265 virtual const GLchar* GetRequestableExtensionsCHROMIUM() = 0; |
| 265 virtual void RequestExtensionCHROMIUM(const char* extension) = 0; | 266 virtual void RequestExtensionCHROMIUM(const char* extension) = 0; |
| 266 virtual void RateLimitOffscreenContextCHROMIUM() = 0; | 267 virtual void RateLimitOffscreenContextCHROMIUM() = 0; |
| 267 virtual void GetMultipleIntegervCHROMIUM( | 268 virtual void GetMultipleIntegervCHROMIUM( |
| 268 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) = 0; | 269 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) = 0; |
| 269 virtual void GetProgramInfoCHROMIUM( | 270 virtual void GetProgramInfoCHROMIUM( |
| 270 GLuint program, GLsizei bufsize, GLsizei* size, void* info) = 0; | 271 GLuint program, GLsizei bufsize, GLsizei* size, void* info) = 0; |
| 271 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) = 0; | 272 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) = 0; |
| 272 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) = 0; | 273 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) = 0; |
| 273 virtual GLuint CreateImageCHROMIUM( | 274 virtual GLuint CreateImageCHROMIUM( |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 const void* pixels) = 0; | 310 const void* pixels) = 0; |
| 310 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0; | 311 virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0; |
| 311 virtual void DiscardFramebufferEXT( | 312 virtual void DiscardFramebufferEXT( |
| 312 GLenum target, GLsizei count, const GLenum* attachments) = 0; | 313 GLenum target, GLsizei count, const GLenum* attachments) = 0; |
| 313 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; | 314 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0; |
| 314 virtual GLuint InsertSyncPointCHROMIUM() = 0; | 315 virtual GLuint InsertSyncPointCHROMIUM() = 0; |
| 315 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; | 316 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) = 0; |
| 316 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; | 317 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) = 0; |
| 317 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ | 318 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_AUTOGEN_H_ |
| 318 | 319 |
| OLD | NEW |