CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     07/03/03 15:07:24

Modified files:
        .              : ChangeLog 
        gui            : gtk.cpp 

Log message:
        Don't neglect to render the buffer for renderers other than AGG.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2519&r2=1.2520
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.71&r2=1.72

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2519
retrieving revision 1.2520
diff -u -b -r1.2519 -r1.2520
--- ChangeLog   3 Mar 2007 13:26:52 -0000       1.2519
+++ ChangeLog   3 Mar 2007 15:07:23 -0000       1.2520
@@ -1,3 +1,8 @@
+2007-03-03 Bastiaan Jacques <[EMAIL PROTECTED]>
+
+       * gui/gtk.cpp: Don't neglect to render the buffer for renderers other
+       than AGG.
+
 2007-03-03 Martin Guy <[EMAIL PROTECTED]>
 
        * testsuite/actionscript.all/Number.as: Add test for unary minus

Index: gui/gtk.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gtk.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -b -r1.71 -r1.72
--- gui/gtk.cpp 3 Mar 2007 13:17:39 -0000       1.71
+++ gui/gtk.cpp 3 Mar 2007 15:07:24 -0000       1.72
@@ -17,7 +17,7 @@
 // 
 //
 
-/* $Id: gtk.cpp,v 1.71 2007/03/03 13:17:39 martinwguy Exp $ */
+/* $Id: gtk.cpp,v 1.72 2007/03/03 15:07:24 bjacques Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -243,6 +243,7 @@
 void
 GtkGui::renderBuffer()
 {
+#ifdef RENDERER_AGG
   if ( _drawbounds.size() == 0 ) return; // nothing to do..
 
        for (unsigned bno=0; bno < _drawbounds.size(); bno++) {
@@ -255,6 +256,8 @@
                  bounds.getMaxX(), bounds.getMaxY());
        
        }
+#endif
+    glue.render();
 }
 
 #ifdef RENDERER_AGG


_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to