gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/BevelFilter.h server/Blu...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/BevelFilter.h server/Blu...
Date: Wed, 26 Sep 2007 19:00:46 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/09/26 19:00:46

Modified files:
        .              : ChangeLog 
        server         : BevelFilter.h BlurFilter.h ConvolutionFilter.h 
                         DropShadowFilter.h GlowFilter.h 
                         GradientBevelFilter.h GradientGlowFilter.h 

Log message:
                * server/: BevelFilter.h, BlurFilter.h, ConvolutionFilter.h,
                  DropShadowFilter.h, GlowFilter.h, GradientBevelFilter.h,
                  GradientGlowFilter.h: include <boost/cstdint.hpp> for 
XintXX_t.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4426&r2=1.4427
http://cvs.savannah.gnu.org/viewcvs/gnash/server/BevelFilter.h?cvsroot=gnash&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/gnash/server/BlurFilter.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/ConvolutionFilter.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/DropShadowFilter.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/GlowFilter.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/GradientBevelFilter.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/GradientGlowFilter.h?cvsroot=gnash&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4426
retrieving revision 1.4427
diff -u -b -r1.4426 -r1.4427
--- ChangeLog   26 Sep 2007 15:22:11 -0000      1.4426
+++ ChangeLog   26 Sep 2007 19:00:45 -0000      1.4427
@@ -1,5 +1,11 @@
 2007-09-26 Sandro Santilli <address@hidden>
 
+       * server/: BevelFilter.h, BlurFilter.h, ConvolutionFilter.h,
+         DropShadowFilter.h, GlowFilter.h, GradientBevelFilter.h,
+         GradientGlowFilter.h: include <boost/cstdint.hpp> for XintXX_t.
+
+2007-09-26 Sandro Santilli <address@hidden>
+
        * server/swf/tag_loaders.cpp (define_sound_loader): don't delete
          the sound data, ownership was transferred to the sound hanlder.
 

Index: server/BevelFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/BevelFilter.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- server/BevelFilter.h        29 Aug 2007 03:32:57 -0000      1.4
+++ server/BevelFilter.h        26 Sep 2007 19:00:46 -0000      1.5
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: BevelFilter.h,v 1.4 2007/08/29 03:32:57 cmusick Exp $ */
+/* $Id: BevelFilter.h,v 1.5 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_BEVELFILTER_H
 #define GNASH_BEVELFILTER_H
@@ -26,6 +26,8 @@
 
 #include "BitmapFilter.h"
 
+#include <boost/cstdint.hpp> // for XintXX_t
+
 namespace gnash {
 
 // A bevel effect filter.

Index: server/BlurFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/BlurFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/BlurFilter.h 29 Aug 2007 03:32:57 -0000      1.3
+++ server/BlurFilter.h 26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: BlurFilter.h,v 1.3 2007/08/29 03:32:57 cmusick Exp $ */
+/* $Id: BlurFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_BLURFILTER_H
 #define GNASH_BLURFILTER_H
@@ -26,6 +26,8 @@
 
 #include "BitmapFilter.h"
 
+#include <boost/cstdint.hpp> // for uint8_t
+
 namespace gnash {
 
 // A blur effect filter.

Index: server/ConvolutionFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/ConvolutionFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/ConvolutionFilter.h  29 Aug 2007 03:32:58 -0000      1.3
+++ server/ConvolutionFilter.h  26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: ConvolutionFilter.h,v 1.3 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: ConvolutionFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_CONVOLUTIONFILTER_H
 #define GNASH_CONVOLUTIONFILTER_H
@@ -25,7 +25,9 @@
 #endif
 
 #include "BitmapFilter.h"
+
 #include <vector>
+#include <boost/cstdint.hpp> // for XintXX_t
 
 namespace gnash {
 

Index: server/DropShadowFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/DropShadowFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/DropShadowFilter.h   29 Aug 2007 03:32:58 -0000      1.3
+++ server/DropShadowFilter.h   26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: DropShadowFilter.h,v 1.3 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: DropShadowFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_DROPSHADOWFILTER_H
 #define GNASH_DROPSHADOWFILTER_H
@@ -26,6 +26,8 @@
 
 #include "BitmapFilter.h"
 
+#include <boost/cstdint.hpp> // for XintXX_t
+
 namespace gnash {
 
 // A drop shadow effect filter.

Index: server/GlowFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/GlowFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/GlowFilter.h 29 Aug 2007 03:32:58 -0000      1.3
+++ server/GlowFilter.h 26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GlowFilter.h,v 1.3 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GlowFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_GLOWFILTER_H
 #define GNASH_GLOWFILTER_H
@@ -26,6 +26,8 @@
 
 #include "BitmapFilter.h"
 
+#include <boost/cstdint.hpp> // for uint32_t
+
 namespace gnash {
 
 // A glow effect filter.

Index: server/GradientBevelFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/GradientBevelFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/GradientBevelFilter.h        29 Aug 2007 03:32:58 -0000      1.3
+++ server/GradientBevelFilter.h        26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GradientBevelFilter.h,v 1.3 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GradientBevelFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_GRADIENTBEVELFILTER_H
 #define GNASH_GRADIENTBEVELFILTER_H
@@ -24,10 +24,11 @@
 #include "config.h"
 #endif
 
-#include <vector>
-
 #include "BitmapFilter.h"
 
+#include <vector>
+#include <boost/cstdint.hpp> // for XintXX_t
+
 namespace gnash {
 
 // A gradient bevel effect filter.

Index: server/GradientGlowFilter.h
===================================================================
RCS file: /sources/gnash/gnash/server/GradientGlowFilter.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- server/GradientGlowFilter.h 29 Aug 2007 03:32:58 -0000      1.3
+++ server/GradientGlowFilter.h 26 Sep 2007 19:00:46 -0000      1.4
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GradientGlowFilter.h,v 1.3 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GradientGlowFilter.h,v 1.4 2007/09/26 19:00:46 strk Exp $ */
 
 #ifndef GNASH_GRADIENTGLOWFILTER_H
 #define GNASH_GRADIENTGLOWFILTER_H
@@ -24,9 +24,11 @@
 #include "config.h"
 #endif
 
+#include "BitmapFilter.h"
+
 #include <vector>
+#include <boost/cstdint.hpp> // for XintXX_t
 
-#include "BitmapFilter.h"
 
 namespace gnash {
 




reply via email to

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