OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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. DO NOT EDIT! | 5 // This file is auto-generated. DO NOT EDIT! |
6 | 6 |
7 // This file is included by gles2_implementation.h to declare the | 7 // This file is included by gles2_implementation.h to declare the |
8 // GL api functions. | 8 // GL api functions. |
9 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 9 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 | 785 |
786 void GenSharedIds( | 786 void GenSharedIds( |
787 GLuint namespace_id, GLuint id_offset, GLsizei n, GLuint* ids); | 787 GLuint namespace_id, GLuint id_offset, GLsizei n, GLuint* ids); |
788 | 788 |
789 void DeleteSharedIds(GLuint namespace_id, GLsizei n, const GLuint* ids); | 789 void DeleteSharedIds(GLuint namespace_id, GLsizei n, const GLuint* ids); |
790 | 790 |
791 void RegisterSharedIds(GLuint namespace_id, GLsizei n, const GLuint* ids); | 791 void RegisterSharedIds(GLuint namespace_id, GLsizei n, const GLuint* ids); |
792 | 792 |
793 GLboolean CommandBufferEnable(const char* feature); | 793 GLboolean CommandBufferEnable(const char* feature); |
794 | 794 |
| 795 void* MapBufferSubData( |
| 796 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access); |
| 797 |
| 798 void UnmapBufferSubData(const void* mem); |
| 799 |
| 800 void* MapTexSubImage2D( |
| 801 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, |
| 802 GLsizei height, GLenum format, GLenum type, GLenum access); |
| 803 |
| 804 void UnmapTexSubImage2D(const void* mem); |
| 805 |
795 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 806 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
796 | 807 |
OLD | NEW |