Changeset 15456 for trunk/psLib/src/imageops/psImageStructManip.h
- Timestamp:
- Nov 5, 2007, 1:56:33 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageStructManip.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageStructManip.h
r12998 r15456 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $8 * @date $Date: 2007- 04-24 22:27:17$7 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-11-05 23:56:33 $ 9 9 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 10 10 */ … … 35 35 * 36 36 */ 37 #ifdef DOXYGEN 37 38 psImage* psImageSubset( 38 39 psImage* image, ///< Parent image. 39 40 psRegion region ///< region of subimage 40 41 ); 42 #else // ifdef DOXYGEN 43 psImage* p_psImageSubset( 44 const char *file, ///< File of caller 45 unsigned int lineno, ///< Line number of caller 46 const char *func, ///< Function name of caller 47 psImage* image, ///< Parent image. 48 psRegion region ///< region of subimage 49 ) PS_ATTR_MALLOC; 50 #define psImageSubset(image, region) \ 51 p_psImageSubset(__FILE__, __LINE__, __func__, image, region) 52 #endif // ifdef DOXYGEN 41 53 42 54 /** Makes a copy of the image view on the parent:
Note:
See TracChangeset
for help on using the changeset viewer.
