IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 7, 2005, 10:27:42 AM (21 years ago)
Author:
desonia
Message:

changed name of p_psMemSetDeallocator/p_psMemGetDeallocator to
psMemSetDeallocator/psMemGetDeallocator.

-rdd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/image/tst_psImageManip.c

    r3446 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-03-18 02:35:15 $
     8 *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222
    2323#include "psTest.h"
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psType.h"
    2626
     
    17881788    // Verify that that an invalid image type is handled properly
    17891789    psErrorClear();
    1790     psImage* invImage = psImageAlloc(cols,rows,PS_TYPE_PTR);
    1791     memset(invImage->rawDataBuffer,0,cols*rows*sizeof(psPtr)); // make sure the image is of all NULLs
     1790    psImage* invImage = psImageAlloc(cols,rows,PS_TYPE_BOOL);
     1791    memset(invImage->rawDataBuffer,0,cols*rows*sizeof(psBool)); // make sure the image is of all NULLs
    17921792    result = psImageResample(result,invImage,2,PS_INTERPOLATE_FLAT);
    17931793    if (result != NULL) {
Note: See TracChangeset for help on using the changeset viewer.