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

Unified Diff: gpu/command_buffer/client/gles2_c_lib_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, 3 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_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index 4ba96ac837c3d98543b24edd96a78f39ac6f932e..7ba0b5cbb7566ad2371564c6e377ab4317fe5a2c 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -575,6 +575,9 @@ void GLES2GetProgramInfoCHROMIUM(
GLuint program, GLsizei bufsize, GLsizei* size, void* info) {
gles2::GetGLContext()->GetProgramInfoCHROMIUM(program, bufsize, size, info);
}
+void GLES2SetSurfaceVisibleCHROMIUM(GLboolean visible) {
+ gles2::GetGLContext()->SetSurfaceVisibleCHROMIUM(visible);
jonathan.backer 2011/09/27 16:53:14 If this is autogen does it checked in? Kinda confu
mmocny 2011/09/28 21:37:33 I am not 100% sure here. I assumed it would need
+}
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_

Powered by Google App Engine
This is Rietveld 408576698