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

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

Issue 7890046: Command to mark surface inactive, so gpu process can release resources. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: updating with recent changes Created 9 years, 2 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 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 9 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 pnames_shm_id, pnames_shm_offset, count, results_shm_id, 1221 pnames_shm_id, pnames_shm_offset, count, results_shm_id,
1222 results_shm_offset, size); 1222 results_shm_offset, size);
1223 } 1223 }
1224 1224
1225 void GetProgramInfoCHROMIUM(GLuint program, uint32 bucket_id) { 1225 void GetProgramInfoCHROMIUM(GLuint program, uint32 bucket_id) {
1226 gles2::GetProgramInfoCHROMIUM& c = 1226 gles2::GetProgramInfoCHROMIUM& c =
1227 GetCmdSpace<gles2::GetProgramInfoCHROMIUM>(); 1227 GetCmdSpace<gles2::GetProgramInfoCHROMIUM>();
1228 c.Init(program, bucket_id); 1228 c.Init(program, bucket_id);
1229 } 1229 }
1230 1230
1231 void SetSurfaceVisibleCHROMIUM(GLboolean visible) {
1232 gles2::SetSurfaceVisibleCHROMIUM& c =
1233 GetCmdSpace<gles2::SetSurfaceVisibleCHROMIUM>();
1234 c.Init(visible);
1235 }
1236
1231 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 1237 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
1232 1238
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698