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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 | 1265 |
1266 void ResizeCHROMIUM(GLuint width, GLuint height) { | 1266 void ResizeCHROMIUM(GLuint width, GLuint height) { |
1267 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height
<< ")"); // NOLINT | 1267 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height
<< ")"); // NOLINT |
1268 helper_->ResizeCHROMIUM(width, height); | 1268 helper_->ResizeCHROMIUM(width, height); |
1269 } | 1269 } |
1270 | 1270 |
1271 const GLchar* GetRequestableExtensionsCHROMIUM(); | 1271 const GLchar* GetRequestableExtensionsCHROMIUM(); |
1272 | 1272 |
1273 void RequestExtensionCHROMIUM(const char* extension); | 1273 void RequestExtensionCHROMIUM(const char* extension); |
1274 | 1274 |
1275 void SetLatchCHROMIUM(GLuint latch_id) { | |
1276 GPU_CLIENT_LOG("[" << this << "] glSetLatchCHROMIUM(" << latch_id << ")"); | |
1277 helper_->SetLatchCHROMIUM(latch_id); | |
1278 } | |
1279 | |
1280 void WaitLatchCHROMIUM(GLuint latch_id) { | |
1281 GPU_CLIENT_LOG("[" << this << "] glWaitLatchCHROMIUM(" << latch_id << ")"); | |
1282 helper_->WaitLatchCHROMIUM(latch_id); | |
1283 } | |
1284 | |
1285 void RateLimitOffscreenContextCHROMIUM(); | 1275 void RateLimitOffscreenContextCHROMIUM(); |
1286 | 1276 |
1287 void SetSurfaceCHROMIUM(GLint surface_id) { | 1277 void SetSurfaceCHROMIUM(GLint surface_id) { |
1288 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); | 1278 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); |
1289 helper_->SetSurfaceCHROMIUM(surface_id); | 1279 helper_->SetSurfaceCHROMIUM(surface_id); |
1290 } | 1280 } |
1291 | 1281 |
1292 void GetMultipleIntegervCHROMIUM( | 1282 void GetMultipleIntegervCHROMIUM( |
1293 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); | 1283 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); |
1294 | 1284 |
1295 void GetProgramInfoCHROMIUM( | 1285 void GetProgramInfoCHROMIUM( |
1296 GLuint program, GLsizei bufsize, GLsizei* size, void* info); | 1286 GLuint program, GLsizei bufsize, GLsizei* size, void* info); |
1297 | 1287 |
1298 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 1288 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
1299 | 1289 |
OLD | NEW |