gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/backend render_handler.h


From: Udo Giacomozzi
Subject: [Gnash-commit] gnash/backend render_handler.h
Date: Fri, 20 Apr 2007 09:49:15 +0000

CVSROOT:        /cvsroot/gnash
Module name:    gnash
Changes by:     Udo Giacomozzi <udog>   07/04/20 09:49:15

Modified files:
        backend        : render_handler.h 

Log message:
        be more doxygen-friendly

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/backend/render_handler.h?cvsroot=gnash&r1=1.34&r2=1.35

Patches:
Index: render_handler.h
===================================================================
RCS file: /cvsroot/gnash/gnash/backend/render_handler.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- render_handler.h    20 Apr 2007 09:43:16 -0000      1.34
+++ render_handler.h    20 Apr 2007 09:49:14 -0000      1.35
@@ -17,7 +17,7 @@
 // 
 //
 
-/* $Id: render_handler.h,v 1.34 2007/04/20 09:43:16 udog Exp $ */
+/* $Id: render_handler.h,v 1.35 2007/04/20 09:49:14 udog Exp $ */
 
 #ifndef RENDER_HANDLER_H
 #define RENDER_HANDLER_H
@@ -555,19 +555,26 @@
   }
   
   
+  /// \brief
+  /// Initializes the renderer for off-screen rendering used by the  
+  /// testsuite.
+  ///
   /// This is a special function used for testcases ONLY. It is used by
   /// MovieTester to prepare the renderer for off-screen rendering 
   /// without any GUI. The renderer is responsible to do all required
   /// steps so that rendering is possible after the call. This may mean
   /// that the renderer allocates memory for the given stage size.
-  /// "width" and "height" are the desired size of the stage in pixels.
   /// 
   /// The function returns false when the renderer is not able to do
   /// off-screen rendering (default).
   ///
   /// Note the function may be called again afterwards, resizing the stage.
   /// Any number of calls to this function is possible and the renderer
-  /// is responsible resize any buffer instead of wasting memory. 
+  /// is responsible to resize any buffer instead of wasting memory. 
+  ///
+  /// @param width stage width in pixels
+  ///
+  /// @param height stage height in pixels
   virtual bool initTestBuffer(unsigned width, unsigned height) {
     return false;
   }




reply via email to

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