Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_autogen.h

Issue 7458010: Revert 93066 - Execute all GL commands up to the put offset reported by a each flush.This means g... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
1275 void RateLimitOffscreenContextCHROMIUM(); 1285 void RateLimitOffscreenContextCHROMIUM();
1276 1286
1277 void SetSurfaceCHROMIUM(GLint surface_id) { 1287 void SetSurfaceCHROMIUM(GLint surface_id) {
1278 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); 1288 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")");
1279 helper_->SetSurfaceCHROMIUM(surface_id); 1289 helper_->SetSurfaceCHROMIUM(surface_id);
1280 } 1290 }
1281 1291
1282 void GetMultipleIntegervCHROMIUM( 1292 void GetMultipleIntegervCHROMIUM(
1283 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); 1293 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size);
1284 1294
1285 void GetProgramInfoCHROMIUM( 1295 void GetProgramInfoCHROMIUM(
1286 GLuint program, GLsizei bufsize, GLsizei* size, void* info); 1296 GLuint program, GLsizei bufsize, GLsizei* size, void* info);
1287 1297
1288 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1298 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
1289 1299
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.cc ('k') | gpu/command_buffer/client/gles2_implementation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698