Changeset 700 for trunk/psLib/src/image/psImage.h
- Timestamp:
- May 14, 2004, 4:10:27 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/image/psImage.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/image/psImage.h
r692 r700 7 7 * @author Ross Harman, MHPCC 8 8 * 9 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-05-1 4 22:39:58$9 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-05-15 02:10:27 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 99 99 * Uses psLib memory deallocation functions to free an image and any existing children. 100 100 * 101 * @return psImage*: Pointer to psImage.102 *103 101 */ 104 102 void psImageFree( … … 106 104 ); 107 105 106 /** Deallocate the image buffer of a psImage. 107 * 108 * deallocates the image buffer while preserving the psImage struct and any children. 109 * 110 */ 111 void psImageFreePixels( 112 psImage *restrict image ///< psImage to free pixel memory from 113 ); 114 115 /** Frees all children of a psImage. 116 * 117 * return int Number of children freed. 118 * 119 */ 120 int psImageFreeChildren( 121 psImage* image ///< psImage in which all children shall be deallocated 122 ); 123 124 125 108 126 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
