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_implementation.h to declare the | 9 // This file is included by gles2_implementation.h to declare the |
10 // GL api functions. | 10 // GL api functions. |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 GLuint namespace_id, GLuint id_offset, GLsizei n, GLuint* ids) OVERRIDE; | 427 GLuint namespace_id, GLuint id_offset, GLsizei n, GLuint* ids) OVERRIDE; |
428 | 428 |
429 virtual void DeleteSharedIdsCHROMIUM( | 429 virtual void DeleteSharedIdsCHROMIUM( |
430 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE; | 430 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE; |
431 | 431 |
432 virtual void RegisterSharedIdsCHROMIUM( | 432 virtual void RegisterSharedIdsCHROMIUM( |
433 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE; | 433 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE; |
434 | 434 |
435 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE; | 435 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE; |
436 | 436 |
| 437 virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE; |
| 438 |
| 439 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE; |
| 440 |
437 virtual void* MapBufferSubDataCHROMIUM( | 441 virtual void* MapBufferSubDataCHROMIUM( |
438 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) OVERRIDE; | 442 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) OVERRIDE; |
439 | 443 |
440 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE; | 444 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE; |
441 | 445 |
442 virtual void* MapTexSubImage2DCHROMIUM( | 446 virtual void* MapTexSubImage2DCHROMIUM( |
443 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, | 447 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, |
444 GLsizei height, GLenum format, GLenum type, GLenum access) OVERRIDE; | 448 GLsizei height, GLenum format, GLenum type, GLenum access) OVERRIDE; |
445 | 449 |
446 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) OVERRIDE; | 450 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) OVERRIDE; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 | 501 |
498 virtual void BindUniformLocationCHROMIUM( | 502 virtual void BindUniformLocationCHROMIUM( |
499 GLuint program, GLint location, const char* name) OVERRIDE; | 503 GLuint program, GLint location, const char* name) OVERRIDE; |
500 | 504 |
501 virtual void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) OVERRIDE; | 505 virtual void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) OVERRIDE; |
502 | 506 |
503 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) OVERRIDE; | 507 virtual void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) OVERRIDE; |
504 | 508 |
505 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 509 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
506 | 510 |
OLD | NEW |