CVSROOT: /sources/gnash
Module name: gnash
Changes by: Hannes Mayr <bik> 06/10/16 16:47:27
Modified files:
. : ChangeLog
gui : gtk.cpp
Log message:
Added #ifdef RENDERER_AGG to set_invalidated_region() in gui/gtk.cpp.
The function world_to_pixel() is only implemented for the AGG renderer
at
the moment.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1243&r2=1.1244
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.35&r2=1.36
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1243
retrieving revision 1.1244
diff -u -b -r1.1243 -r1.1244
--- ChangeLog 16 Oct 2006 16:14:07 -0000 1.1243
+++ ChangeLog 16 Oct 2006 16:47:27 -0000 1.1244
@@ -1,3 +1,7 @@
+2006-10-16 Hannes Mayr <[EMAIL PROTECTED]>
+ * gui/gtk.cpp: Use set_invalidated_region() only with AGG renderer until
+ world_to_pixel() is implemented for triangle-based renders.
+
2006-10-16 Rob Savoye <[EMAIL PROTECTED]>
* gui/gtksup.h: Add prototype for menuitem_sound_callback.
Index: gui/gtk.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gtk.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -b -r1.35 -r1.36
--- gui/gtk.cpp 16 Oct 2006 16:14:07 -0000 1.35
+++ gui/gtk.cpp 16 Oct 2006 16:47:27 -0000 1.36
@@ -232,6 +232,7 @@
void
GtkGui::set_invalidated_region(const rect& bounds)
{
+#ifdef RENDERER_AGG
// forward to renderer
_renderer->set_invalidated_region(bounds);
@@ -265,6 +266,7 @@
m_draw_maxy \
);
*/
+#endif
}
void
_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit