gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/video_stream_instance.h


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/video_stream_instance.h
Date: Fri, 14 Mar 2008 17:30:35 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/03/14 17:30:35

Modified files:
        .              : ChangeLog 
        server         : video_stream_instance.h 

Log message:
        implement pointInShape (for the sake of removing the error log in 
default
        implementation, but it does the same thing as the former).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5913&r2=1.5914
http://cvs.savannah.gnu.org/viewcvs/gnash/server/video_stream_instance.h?cvsroot=gnash&r1=1.27&r2=1.28

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5913
retrieving revision 1.5914
diff -u -b -r1.5913 -r1.5914
--- ChangeLog   14 Mar 2008 16:22:07 -0000      1.5913
+++ ChangeLog   14 Mar 2008 17:30:34 -0000      1.5914
@@ -1,3 +1,9 @@
+2008-03-14 Sandro Santilli <address@hidden>
+
+       * server/video_stream_instance.h: implement pointInShape (for the
+         sake of removing the error log in default implementation, but
+         it does the same thing as the former).
+
 2008-03-14 Benjamin Wolsey <address@hidden>
 
        * libbase/tree.hh: update to version 2.51

Index: server/video_stream_instance.h
===================================================================
RCS file: /sources/gnash/gnash/server/video_stream_instance.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -b -r1.27 -r1.28
--- server/video_stream_instance.h      5 Mar 2008 03:56:00 -0000       1.27
+++ server/video_stream_instance.h      14 Mar 2008 17:30:35 -0000      1.28
@@ -50,6 +50,12 @@
 
        ~video_stream_instance();
 
+       virtual bool pointInShape(float x, float y) const
+       {
+               // video character shape is always a rectangle..
+               return pointInBounds(x, y);
+       }
+
        geometry::Range2d<float> getBounds() const
        {
                // TODO: return the bounds of the dynamically




reply via email to

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