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

Unified Diff: runtime/embedders/openglui/common/graphics_handler.cc

Issue 13042015: Various OpenGLUI changes: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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: runtime/embedders/openglui/common/graphics_handler.cc
===================================================================
--- runtime/embedders/openglui/common/graphics_handler.cc (revision 20570)
+++ runtime/embedders/openglui/common/graphics_handler.cc (working copy)
@@ -109,6 +109,9 @@
}
int32_t GraphicsHandler::Update() {
+ LOGI("In GraphicsHandler::Update, display_context dirty %s",
+ (display_context == NULL ? "NULL" :
+ (display_context->isDirty() ? "yes":"no")));
if (display_context != NULL && display_context->isDirty()) {
LOGI("Flushing display context\n");
display_context->Flush();

Powered by Google App Engine
This is Rietveld 408576698