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

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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 1227
1228 void* MapTexSubImage2DCHROMIUM( 1228 void* MapTexSubImage2DCHROMIUM(
1229 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, 1229 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
1230 GLsizei height, GLenum format, GLenum type, GLenum access); 1230 GLsizei height, GLenum format, GLenum type, GLenum access);
1231 1231
1232 void UnmapTexSubImage2DCHROMIUM(const void* mem); 1232 void UnmapTexSubImage2DCHROMIUM(const void* mem);
1233 1233
1234 void CopyTextureToParentTextureCHROMIUM( 1234 void CopyTextureToParentTextureCHROMIUM(
1235 GLuint client_child_id, GLuint client_parent_id); 1235 GLuint client_child_id, GLuint client_parent_id);
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
1239 helper_->ResizeCHROMIUM(width, height);
1240 }
1241 1238
1242 const GLchar* GetRequestableExtensionsCHROMIUM(); 1239 const GLchar* GetRequestableExtensionsCHROMIUM();
1243 1240
1244 void RequestExtensionCHROMIUM(const char* extension); 1241 void RequestExtensionCHROMIUM(const char* extension);
1245 1242
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(); 1243 void RateLimitOffscreenContextCHROMIUM();
1257 1244
1258 void SetSurfaceCHROMIUM(GLint surface_id) { 1245 void SetSurfaceCHROMIUM(GLint surface_id) {
1259 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")"); 1246 GPU_CLIENT_LOG("[" << this << "] glSetSurfaceCHROMIUM(" << surface_id << ")");
1260 helper_->SetSurfaceCHROMIUM(surface_id); 1247 helper_->SetSurfaceCHROMIUM(surface_id);
1261 } 1248 }
1262 1249
1263 void GetMultipleIntegervCHROMIUM( 1250 void GetMultipleIntegervCHROMIUM(
1264 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); 1251 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size);
1265 1252
1266 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 1253 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
1267 1254
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698