Changeset 3671 for trunk/psLib/src/fft/psImageFFT.c
- Timestamp:
- Apr 5, 2005, 3:12:58 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fft/psImageFFT.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fft/psImageFFT.c
r3301 r3671 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-0 2-22 19:38:44$7 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-04-06 01:12:58 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 126 126 127 127 /* if not a complex number, this is logically just a copy then */ 128 if (!PS_IS_PSELEMTYPE_COMPLEX(type) && type != PS_TYPE_PTR) {128 if (!PS_IS_PSELEMTYPE_COMPLEX(type)) { 129 129 return psImageCopy(out, in, type); 130 130 } … … 186 186 187 187 /* if not a complex image type, this is logically just zeroed image of same size */ 188 if (!PS_IS_PSELEMTYPE_COMPLEX(type) && type != PS_TYPE_PTR) {188 if (!PS_IS_PSELEMTYPE_COMPLEX(type)) { 189 189 out = psImageRecycle(out, numCols, numRows, type); 190 190 memset(out->data.V[0], 0, PSELEMTYPE_SIZEOF(type) * numCols * numRows); … … 327 327 328 328 /* if not a complex image, this is logically just a image copy */ 329 if (!PS_IS_PSELEMTYPE_COMPLEX(type) && type != PS_TYPE_PTR) {329 if (!PS_IS_PSELEMTYPE_COMPLEX(type)) { 330 330 return psImageCopy(out, in, type); 331 331 }
Note:
See TracChangeset
for help on using the changeset viewer.
