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

Unified Diff: gpu/demos/framework/window_linux.cc

Issue 9699048: Make Occlusion Query Sample (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make it more C++y Created 8 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
« no previous file with comments | « gpu/demos/framework/window.cc ('k') | gpu/demos/occlusion_query/occlusion_query.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/demos/framework/window_linux.cc
diff --git a/gpu/demos/framework/window_linux.cc b/gpu/demos/framework/window_linux.cc
index d805d3d80f7ec8d19274725171891f732834ee7f..552bb97bf62ccfe48e26ff0b25e726187a5caa9c 100644
--- a/gpu/demos/framework/window_linux.cc
+++ b/gpu/demos/framework/window_linux.cc
@@ -21,9 +21,7 @@ gboolean OnExpose(GtkWidget* widget, GdkEventExpose* event, gpointer data) {
Window* window = static_cast<Window*>(data);
window->OnPaint();
- // TODO(alokp): Figure out why this is crashing. Animation will not work
- // until then.
- //gtk_widget_queue_draw(widget);
+ gtk_widget_queue_draw(widget);
return FALSE;
}
} // namespace
« no previous file with comments | « gpu/demos/framework/window.cc ('k') | gpu/demos/occlusion_query/occlusion_query.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698