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

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

Issue 7253052: Execute all GL commands up to the put offset reported by a flush. (Closed) Base URL: svn://chrome-svn/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 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1236
1237 void ResizeCHROMIUM(GLuint width, GLuint height) { 1237 void ResizeCHROMIUM(GLuint width, GLuint height) {
1238 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height << ")"); // NOLINT 1238 GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height << ")"); // NOLINT
1239 helper_->ResizeCHROMIUM(width, height); 1239 helper_->ResizeCHROMIUM(width, height);
1240 } 1240 }
1241 1241
1242 const GLchar* GetRequestableExtensionsCHROMIUM(); 1242 const GLchar* GetRequestableExtensionsCHROMIUM();
1243 1243
1244 void RequestExtensionCHROMIUM(const char* extension); 1244 void RequestExtensionCHROMIUM(const char* extension);
1245 1245
1246 void SetLatchCHROMIUM(GLuint latch_id) {
1247 GPU_CLIENT_LOG("[" << this << "] glSetLatchCHROMIUM(" << latch_id << ")");
1248 helper_->SetLatchCHROMIUM(latch_id);
1249 }
1250
1251 void WaitLatchCHROMIUM(GLuint latch_id) {
1252 GPU_CLIENT_LOG("[" << this << "] glWaitLatchCHROMIUM(" << latch_id << ")");
1253 helper_->WaitLatchCHROMIUM(latch_id);
1254 }
1255
1256 void RateLimitOffscreenContextCHROMIUM(); 1246 void RateLimitOffscreenContextCHROMIUM();
1257 1247
1258 void SetSurfaceCHROMIUM(GLint surface_id) { 1248 void SetSurfaceCHROMIUM(GLint surface_id) {
1259 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); 1249 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")");
1260 helper_->SetSurfaceCHROMIUM(surface_id); 1250 helper_->SetSurfaceCHROMIUM(surface_id);
1261 } 1251 }
1262 1252
1263 void GetMultipleIntegervCHROMIUM( 1253 void GetMultipleIntegervCHROMIUM(
1264 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); 1254 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size);
1265 1255
1266 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1256 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
1267 1257
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698