gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/gnash.h server/shape.h s...


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog server/gnash.h server/shape.h s...
Date: Sat, 14 Oct 2006 03:22:53 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/10/14 03:22:53

Modified files:
        .              : ChangeLog 
        server         : gnash.h shape.h styles.h 

Log message:
        Added necessary DSOEXPORT for --enable-visibility.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1209&r2=1.1210
http://cvs.savannah.gnu.org/viewcvs/gnash/server/gnash.h?cvsroot=gnash&r1=1.60&r2=1.61
http://cvs.savannah.gnu.org/viewcvs/gnash/server/shape.h?cvsroot=gnash&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/gnash/server/styles.h?cvsroot=gnash&r1=1.12&r2=1.13

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1209
retrieving revision 1.1210
diff -u -b -r1.1209 -r1.1210
--- ChangeLog   14 Oct 2006 00:36:50 -0000      1.1209
+++ ChangeLog   14 Oct 2006 03:22:52 -0000      1.1210
@@ -1,3 +1,11 @@
+2006-10-14 Markus Gothe <address@hidden>
+
+       * server/shape.h: DSOEXPORT  class mesh_set
+       * server/styles.h: DSOEXPORT class fill_style.
+       * server/gnash.h: DSOEXPORT void  expand_to_rect(const rect& r);
+         DSOEXPORT movie_definition* create_movie(tu_file* in, 
+         const std::string& url);
+
 2006-10-13  Rob Savoye  <address@hidden>
 
        * macros/boost.m4: Do stupid and complex searching for the Boost
@@ -246,7 +254,7 @@
 2006-10-11 Sandro Santilli <address@hidden>
 
        * macros/gtkglext.m4: added missing -L to GLEXT_LIBS when
-       --with-glext-lib is given
+         --with-glext-lib is given.
        * backend/render_handler_agg.cpp:
          use HAVE_AGG_SCANLINES_COMPOUND_LAYERED define to toggle inclusion
          of compatibility header.
@@ -360,7 +368,7 @@
 2006-10-10 Udo Giacomozzi <address@hidden>
 
        * backend/render_handler_agg.cpp: Added asserts for parameters and
-       fixed draw_poly() which was always filling the polygon
+         fixed draw_poly() which was always filling the polygon.
 
 2006-10-10 Sandro Santilli <address@hidden>
 
@@ -395,7 +403,6 @@
        the link list.
        * gui/Makefile.am: Optionally add the sound engine flags to the
        link list.
-       
        * macros/ffmpeg.m4: Rewrite to support new --enable-engine
        option. Look for libavcodec, libavutil, and libdts seperately,
        they aren't necessarily in the same package
@@ -523,7 +530,7 @@
        server/shape.cpp, server/styles.cpp, server/text.cpp,
        server/parser/morph2_character_def.cpp,
        server/shape_character_def.cpp:
-       changed to support new renderer design
+         Changed to support new renderer design
 
 2006-10-07 Tomas Groth Christensen <address@hidden>
 
@@ -616,7 +623,6 @@
        Flash movie to disk when using the plugin.
        * plugin/plugin.h, plugin.cpp: Optionally write the streaming
        Flash movie to disk.
-
        * macros/boost/m4: Look for the Boost thread library using a
        variety of names.
        * macros/boost.m4: Also look for libboost_thread-mt if

Index: server/gnash.h
===================================================================
RCS file: /sources/gnash/gnash/server/gnash.h,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -b -r1.60 -r1.61
--- server/gnash.h      12 Oct 2006 16:37:25 -0000      1.60
+++ server/gnash.h      14 Oct 2006 03:22:52 -0000      1.61
@@ -35,7 +35,7 @@
 // 
 //
 
-/* $Id: gnash.h,v 1.60 2006/10/12 16:37:25 udog Exp $ */
+/* $Id: gnash.h,v 1.61 2006/10/14 03:22:52 nihilus Exp $ */
 
 /// \mainpage
 ///
@@ -251,7 +251,7 @@
 /// No attempt will be made to load associated .gsc (cache) files
 /// by this function.
 ///
-movie_definition* create_movie(tu_file* in, const std::string& url);
+DSOEXPORT movie_definition* create_movie(tu_file* in, const std::string& url);
 
 /// Creates the movie from the given input stream. 
 //
@@ -533,7 +533,7 @@
        void    expand_to_transformed_rect(const matrix& m, const rect& r);
        
        /// Makes union of the given and the current rect
-       void  expand_to_rect(const rect& r);
+       DSOEXPORT void  expand_to_rect(const rect& r);
 
        void    set_lerp(const rect& a, const rect& b, float t);
 };

Index: server/shape.h
===================================================================
RCS file: /sources/gnash/gnash/server/shape.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- server/shape.h      7 Oct 2006 15:08:26 -0000       1.11
+++ server/shape.h      14 Oct 2006 03:22:52 -0000      1.12
@@ -5,11 +5,12 @@
 
 // Quadratic bezier outline shapes, the basis for most SWF rendering.
 
+/* $Id: */
 
 #ifndef GNASH_SHAPE_H
 #define GNASH_SHAPE_H
 
-
+#include "tu_config.h"
 #include "styles.h"
 
 
@@ -99,7 +100,7 @@
 
 
        /// A whole shape, tesselated to a certain error tolerance.
-       class mesh_set
+       class DSOEXPORT mesh_set
        {
        public:
                mesh_set();

Index: server/styles.h
===================================================================
RCS file: /sources/gnash/gnash/server/styles.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- server/styles.h     7 Oct 2006 15:08:26 -0000       1.12
+++ server/styles.h     14 Oct 2006 03:22:52 -0000      1.13
@@ -5,6 +5,7 @@
 
 // Fill and line style types.
 
+/* $Id: styles.h,v 1.13 2006/10/14 03:22:52 nihilus Exp $ */
 
 #ifndef GNASH_STYLES_H
 #define GNASH_STYLES_H
@@ -28,14 +29,14 @@
        rgba    m_color;
 };
 
-class base_fill_style
+class DSOLOCAL base_fill_style
 {
 public:
        virtual ~base_fill_style() {};
 };
 
 /// For the interior of outline shapes.
-class fill_style : public base_fill_style
+class DSOEXPORT fill_style : public base_fill_style
 {
 public:
 




reply via email to

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