| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access); | 1253 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access); |
| 1254 | 1254 |
| 1255 void UnmapBufferSubDataCHROMIUM(const void* mem); | 1255 void UnmapBufferSubDataCHROMIUM(const void* mem); |
| 1256 | 1256 |
| 1257 void* MapTexSubImage2DCHROMIUM( | 1257 void* MapTexSubImage2DCHROMIUM( |
| 1258 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, | 1258 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, |
| 1259 GLsizei height, GLenum format, GLenum type, GLenum access); | 1259 GLsizei height, GLenum format, GLenum type, GLenum access); |
| 1260 | 1260 |
| 1261 void UnmapTexSubImage2DCHROMIUM(const void* mem); | 1261 void UnmapTexSubImage2DCHROMIUM(const void* mem); |
| 1262 | 1262 |
| 1263 void CopyTextureToParentTextureCHROMIUM( | |
| 1264 GLuint client_child_id, GLuint client_parent_id); | |
| 1265 | |
| 1266 void ResizeCHROMIUM(GLuint width, GLuint height) { | 1263 void ResizeCHROMIUM(GLuint width, GLuint height) { |
| 1267 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height
<< ")"); // NOLINT | 1264 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height
<< ")"); // NOLINT |
| 1268 helper_->ResizeCHROMIUM(width, height); | 1265 helper_->ResizeCHROMIUM(width, height); |
| 1269 } | 1266 } |
| 1270 | 1267 |
| 1271 const GLchar* GetRequestableExtensionsCHROMIUM(); | 1268 const GLchar* GetRequestableExtensionsCHROMIUM(); |
| 1272 | 1269 |
| 1273 void RequestExtensionCHROMIUM(const char* extension); | 1270 void RequestExtensionCHROMIUM(const char* extension); |
| 1274 | 1271 |
| 1275 void RateLimitOffscreenContextCHROMIUM(); | 1272 void RateLimitOffscreenContextCHROMIUM(); |
| 1276 | 1273 |
| 1277 void SetSurfaceCHROMIUM(GLint surface_id) { | 1274 void SetSurfaceCHROMIUM(GLint surface_id) { |
| 1278 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); | 1275 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); |
| 1279 helper_->SetSurfaceCHROMIUM(surface_id); | 1276 helper_->SetSurfaceCHROMIUM(surface_id); |
| 1280 } | 1277 } |
| 1281 | 1278 |
| 1282 void GetMultipleIntegervCHROMIUM( | 1279 void GetMultipleIntegervCHROMIUM( |
| 1283 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); | 1280 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); |
| 1284 | 1281 |
| 1285 void GetProgramInfoCHROMIUM( | 1282 void GetProgramInfoCHROMIUM( |
| 1286 GLuint program, GLsizei bufsize, GLsizei* size, void* info); | 1283 GLuint program, GLsizei bufsize, GLsizei* size, void* info); |
| 1287 | 1284 |
| 1288 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 1285 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
| 1289 | 1286 |
| OLD | NEW |