IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 13, 2007, 2:39:51 PM (19 years ago)
Author:
Paul Price
Message:

Removing complex number support. No-one was using it, and it prevents compilation on Solaris.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tap_psMatrix02.c

    r10816 r12431  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2006-12-20 20:02:29 $
     14 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2007-03-14 00:39:51 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5656        psMemId id = psMemGetId();
    5757        psImage *outImage = (psImage*)psImageAlloc(3, 3, PS_TYPE_F64);
    58         psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_C32);
     58        psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_U8);
    5959        psMemIncrRefCounter(outImage);
    6060        ok(psMatrixTranspose(outImage, badImage1) == NULL, "psMatrixTranspose(): inImage = outImage results in NULL return");
     
    6969        psMemId id = psMemGetId();
    7070        psImage *inImage = (psImage*)psImageAlloc(3, 3, PS_TYPE_F64);
    71         psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_C32);
     71        psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_U8);
    7272        badImage1 = psMatrixTranspose(badImage1, inImage);
    7373        ok(badImage1 != NULL, "psMatrixTranspose() results in non-NULL return");
Note: See TracChangeset for help on using the changeset viewer.