Index: trunk/psLib/src/image/psImage.h
===================================================================
--- trunk/psLib/src/image/psImage.h	(revision 4128)
+++ trunk/psLib/src/image/psImage.h	(revision 4195)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-07 02:29:44 $
+ *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-09 21:20:20 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -76,5 +76,5 @@
     psArray* children;                 ///< Children of this region.
 
-    psPtr rawDataBuffer;
+    psPtr rawDataBuffer;               ///< Raw data buffer for Allocating/Freeing Images
 }
 psImage;
@@ -151,8 +151,12 @@
 );
 
+/** Copy an image to a new buffer
+ *  
+ *  @return True if image copied or false if error
+ */
 bool p_psImageCopyToRawBuffer(
-    void* buffer,
-    const psImage* input,
-    psElemType type
+    void* buffer,                      ///< the buffer used to copy the image
+    const psImage* input,              ///< the input image to be copied
+    psElemType type                    ///< the datatype of the image to be copied
 );
 
