Changeset 4408
- Timestamp:
- Jun 28, 2005, 9:52:10 AM (21 years ago)
- Location:
- trunk/doc/pslib
- Files:
-
- 2 edited
-
ChangeLogSDRS.tex (modified) (2 diffs)
-
psLibSDRS.tex (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/ChangeLogSDRS.tex
r4407 r4408 1 %%% $Id: ChangeLogSDRS.tex,v 1.15 3 2005-06-28 19:23:35price Exp $1 %%% $Id: ChangeLogSDRS.tex,v 1.154 2005-06-28 19:52:10 price Exp $ 2 2 3 3 \subsection{Changes from version 00 to version 01} … … 743 743 \code{psAlloc} checks the allocation size against 744 744 \code{PS_MEM_LIMIT}. 745 \item \code{psVector} and \code{psImage} functions \code{-Alloc}, 746 \code{-Realloc} and \code{-Recycle} changed to signed. 745 747 \item \code{nFail} in \code{psMetadataConfigParse} is \code{unsigned}. 746 748 \item \code{timeval} changed to \code{struct timeval} throughout. -
trunk/doc/pslib/psLibSDRS.tex
r4407 r4408 1 %%% $Id: psLibSDRS.tex,v 1.30 1 2005-06-28 19:23:35price Exp $1 %%% $Id: psLibSDRS.tex,v 1.302 2005-06-28 19:52:10 price Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 2032 2032 const psU32 nalloc; // Number allocated 2033 2033 psPixelCoord *data; // The pixel coordinates 2034 void *lock; ///<Lock for thread safety2034 void *lock; // Lock for thread safety 2035 2035 } psPixels; 2036 2036 \end{datatype} … … 3151 3151 typedef struct psImage { 3152 3152 psMathType type; ///< image data type and dimension 3153 const ps U32 numCols; ///< Number of columns in image3154 const ps U32 numRows; ///< Number of rows in image.3153 const psS32 numCols; ///< Number of columns in image 3154 const psS32 numRows; ///< Number of rows in image. 3155 3155 const psS32 col0; ///< Column position relative to parent. 3156 3156 const psS32 row0; ///< Row position relative to parent. … … 3203 3203 3204 3204 \begin{prototype} 3205 psImage *psImageAlloc(ps U32 numCols, psU32 numRows, psElemType type);3205 psImage *psImageAlloc(psS32 numCols, psS32 numRows, psElemType type); 3206 3206 \end{prototype} 3207 3207 Create an image of a specified \code{numCols}, \code{numRows}, and data … … 3213 3213 psImage* psImageRecycle( 3214 3214 psImage* old, ///< the psImage to recycle by resizing image buffer 3215 ps U32 numCols, ///< the desired number of columns in image3216 ps U32 numRows, ///< the desired number of rows in image3215 psS32 numCols, ///< the desired number of columns in image 3216 psS32 numRows, ///< the desired number of rows in image 3217 3217 const psElemType type ///< the desired datatype of the image 3218 3218 );
Note:
See TracChangeset
for help on using the changeset viewer.
