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

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

Issue 5626008: Exposed support for dynamically enabling extensions in command buffer... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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. DO NOT EDIT! 5 // This file is auto-generated. DO NOT EDIT!
6 6
7 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 7 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
8 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 8 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
9 9
10 void ActiveTexture(GLenum texture) { 10 void ActiveTexture(GLenum texture) {
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after
1196 gles2::CopyTextureToParentTextureCHROMIUM& c = 1196 gles2::CopyTextureToParentTextureCHROMIUM& c =
1197 GetCmdSpace<gles2::CopyTextureToParentTextureCHROMIUM>(); 1197 GetCmdSpace<gles2::CopyTextureToParentTextureCHROMIUM>();
1198 c.Init(client_child_id, client_parent_id); 1198 c.Init(client_child_id, client_parent_id);
1199 } 1199 }
1200 1200
1201 void ResizeCHROMIUM(GLuint width, GLuint height) { 1201 void ResizeCHROMIUM(GLuint width, GLuint height) {
1202 gles2::ResizeCHROMIUM& c = GetCmdSpace<gles2::ResizeCHROMIUM>(); 1202 gles2::ResizeCHROMIUM& c = GetCmdSpace<gles2::ResizeCHROMIUM>();
1203 c.Init(width, height); 1203 c.Init(width, height);
1204 } 1204 }
1205 1205
1206 void GetRequestableExtensionsCHROMIUM(uint32 bucket_id) {
1207 gles2::GetRequestableExtensionsCHROMIUM& c =
1208 GetCmdSpace<gles2::GetRequestableExtensionsCHROMIUM>();
1209 c.Init(bucket_id);
1210 }
1211
1212 void RequestExtensionCHROMIUM(uint32 bucket_id) {
1213 gles2::RequestExtensionCHROMIUM& c =
1214 GetCmdSpace<gles2::RequestExtensionCHROMIUM>();
1215 c.Init(bucket_id);
1216 }
1217
1206 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 1218 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
1207 1219
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698