gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash gui/fb.cpp gui/fltk_glue_agg.cpp gui/gtk....


From: Udo Giacomozzi
Subject: [Gnash-commit] gnash gui/fb.cpp gui/fltk_glue_agg.cpp gui/gtk....
Date: Wed, 27 Jun 2007 09:55:21 +0000

CVSROOT:        /cvsroot/gnash
Module name:    gnash
Changes by:     Udo Giacomozzi <udog>   07/06/27 09:55:21

Modified files:
        gui            : fb.cpp fltk_glue_agg.cpp gtk.cpp gui.cpp 
        .              : ChangeLog 

Log message:
        gui/fb.cpp, gui/fltk_glue_agg.cpp, gui/gtk.cpp, gui/gui.cpp: set 
correct _validbounds

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/fb.cpp?cvsroot=gnash&r1=1.33&r2=1.34
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/fltk_glue_agg.cpp?cvsroot=gnash&r1=1.6&r2=1.7
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.95&r2=1.96
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gui.cpp?cvsroot=gnash&r1=1.79&r2=1.80
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3613&r2=1.3614

Patches:
Index: gui/fb.cpp
===================================================================
RCS file: /cvsroot/gnash/gnash/gui/fb.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -b -r1.33 -r1.34
--- gui/fb.cpp  26 Jun 2007 17:40:09 -0000      1.33
+++ gui/fb.cpp  27 Jun 2007 09:55:20 -0000      1.34
@@ -231,7 +231,7 @@
   m_stage_width = _width;
   m_stage_height = _height;
   
-  _validbounds.setTo(0, 0, _width, _height);
+  _validbounds.setTo(0, 0, _width-1, _height-1);
     
   
   #ifdef DOUBLE_BUFFER

Index: gui/fltk_glue_agg.cpp
===================================================================
RCS file: /cvsroot/gnash/gnash/gui/fltk_glue_agg.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- gui/fltk_glue_agg.cpp       28 May 2007 15:40:59 -0000      1.6
+++ gui/fltk_glue_agg.cpp       27 Jun 2007 09:55:20 -0000      1.7
@@ -78,7 +78,7 @@
     _width = width;
     _height = height;
 
-    _validbounds.setTo(0, 0, _width, _height);
+    _validbounds.setTo(0, 0, _width-1, _height-1);
     _drawbounds = _validbounds;
 
 }

Index: gui/gtk.cpp
===================================================================
RCS file: /cvsroot/gnash/gnash/gui/gtk.cpp,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -b -r1.95 -r1.96
--- gui/gtk.cpp 23 Jun 2007 18:19:53 -0000      1.95
+++ gui/gtk.cpp 27 Jun 2007 09:55:20 -0000      1.96
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-/* $Id: gtk.cpp,v 1.95 2007/06/23 18:19:53 bjacques Exp $ */
+/* $Id: gtk.cpp,v 1.96 2007/06/27 09:55:20 udog Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -231,7 +231,7 @@
        _width = width;
        _height = height;
 
-       _validbounds.setTo(0, 0, _width, _height);
+       _validbounds.setTo(0, 0, _width-1, _height-1);
     
        glue.setRenderHandlerSize(_width, _height);
 

Index: gui/gui.cpp
===================================================================
RCS file: /cvsroot/gnash/gnash/gui/gui.cpp,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -b -r1.79 -r1.80
--- gui/gui.cpp 1 Jun 2007 09:13:37 -0000       1.79
+++ gui/gui.cpp 27 Jun 2007 09:55:20 -0000      1.80
@@ -154,7 +154,7 @@
        // set new size ?
        _width = width;
        _height = height;
-       _validbounds.setTo(0, 0, _width, _height);
+       _validbounds.setTo(0, 0, _width-1, _height-1);
        //log_msg(_("new size (in twips) is: %dx%d"), _width*20, _height*20); 
 }
 

Index: ChangeLog
===================================================================
RCS file: /cvsroot/gnash/gnash/ChangeLog,v
retrieving revision 1.3613
retrieving revision 1.3614
diff -u -b -r1.3613 -r1.3614
--- ChangeLog   26 Jun 2007 17:40:08 -0000      1.3613
+++ ChangeLog   27 Jun 2007 09:55:20 -0000      1.3614
@@ -1,3 +1,8 @@
+2007-06-27 Udo Giacomozzi <address@hidden>
+
+       * gui/fb.cpp, gui/fltk_glue_agg.cpp, gui/gtk.cpp, gui/gui.cpp: set
+         correct _validbounds  
+
 2007-06-26 Udo Giacomozzi <address@hidden>
 
        * backend/render_handler_agg_style.h: always premultiply image accessors




reply via email to

[Prev in Thread] Current Thread [Next in Thread]