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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/gles2_implementation_autogen.h
===================================================================
--- gpu/command_buffer/client/gles2_implementation_autogen.h (revision 91774)
+++ gpu/command_buffer/client/gles2_implementation_autogen.h (working copy)
@@ -1234,25 +1234,12 @@
void CopyTextureToParentTextureCHROMIUM(
GLuint client_child_id, GLuint client_parent_id);
-void ResizeCHROMIUM(GLuint width, GLuint height) {
- GPU_CLIENT_LOG("[" << this << "] glResizeCHROMIUM(" << width << ", " << height << ")"); // NOLINT
- helper_->ResizeCHROMIUM(width, height);
-}
+void ResizeCHROMIUM(GLuint width, GLuint height);
const GLchar* GetRequestableExtensionsCHROMIUM();
void RequestExtensionCHROMIUM(const char* extension);
-void SetLatchCHROMIUM(GLuint latch_id) {
- GPU_CLIENT_LOG("[" << this << "] glSetLatchCHROMIUM(" << latch_id << ")");
- helper_->SetLatchCHROMIUM(latch_id);
-}
-
-void WaitLatchCHROMIUM(GLuint latch_id) {
- GPU_CLIENT_LOG("[" << this << "] glWaitLatchCHROMIUM(" << latch_id << ")");
- helper_->WaitLatchCHROMIUM(latch_id);
-}
-
void RateLimitOffscreenContextCHROMIUM();
void SetSurfaceCHROMIUM(GLint surface_id) {

Powered by Google App Engine
This is Rietveld 408576698