IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 5, 2005, 3:12:58 PM (21 years ago)
Author:
desonia
Message:

Removed PS_TYPE_PTR from psElemType, as per latest SDRS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psImageFFT.c

    r3301 r3671  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-02-22 19:38:44 $
     7 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-04-06 01:12:58 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    126126
    127127    /* 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)) {
    129129        return psImageCopy(out, in, type);
    130130    }
     
    186186
    187187    /* 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)) {
    189189        out = psImageRecycle(out, numCols, numRows, type);
    190190        memset(out->data.V[0], 0, PSELEMTYPE_SIZEOF(type) * numCols * numRows);
     
    327327
    328328    /* 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)) {
    330330        return psImageCopy(out, in, type);
    331331    }
Note: See TracChangeset for help on using the changeset viewer.