? .gtk.cpp.swp ? .gtk_glue_gtkglext.cpp.swp ? .gtksup.h.swp ? .gui.cpp.swp Index: gtk.cpp =================================================================== RCS file: /sources/gnash/gnash/gui/gtk.cpp,v retrieving revision 1.91 diff -u -r1.91 gtk.cpp --- gtk.cpp 14 May 2007 10:03:38 -0000 1.91 +++ gtk.cpp 3 Jun 2007 21:56:00 -0000 @@ -238,6 +238,16 @@ return true; } +bool +GtkGui::want_redraw() +{ +#ifdef RENDERER_OPENGL + return true; +#else + return false; +#endif +} + void GtkGui::renderBuffer() { Index: gtksup.h =================================================================== RCS file: /sources/gnash/gnash/gui/gtksup.h,v retrieving revision 1.42 diff -u -r1.42 gtksup.h --- gtksup.h 28 May 2007 15:41:00 -0000 1.42 +++ gtksup.h 3 Jun 2007 21:56:00 -0000 @@ -65,6 +65,7 @@ virtual void renderBuffer(); virtual void setInterval(unsigned int interval); virtual void setTimeout(unsigned int timeout); + virtual bool want_redraw(); /// Create a menu bar for the application, attach to our window. // This should only appear in the standalone player.