IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 17, 2004, 5:33:48 PM (22 years ago)
Author:
eugene
Message:

cleaned up structures to compile successfully

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psImage.h

    r251 r253  
    1616    int nx, ny;                         ///< size of image
    1717    int x0, y0;                         ///< data region relative to parent
    18     psF32 **rows;                       ///< == rows_f32
    19     psS8  **rows_s8;                    ///< pointers to psS8 data
    20     psS16 **rows_s16;                   ///< pointers to psS16 data
    21     psS32 **rows_s32;                   ///< pointers to psS32 data
    22     psU8  **rows_u8;                    ///< pointers to psU8 data
    23     psU16 **rows_u16;                   ///< pointers to psU16 data
    24     psU32 **rows_u32;                   ///< pointers to psU32 data
    25     psF32 **rows_f32;                   ///< pointers to psF32 data
    26     psF64 **rows_f64;                   ///< pointers to psF64 data
     18    union {
     19        psF32 **rows;                   ///< == rows_f32
     20        psS8  **rows_s8;                        ///< pointers to psS8 data
     21        psS16 **rows_s16;                       ///< pointers to psS16 data
     22        psS32 **rows_s32;                       ///< pointers to psS32 data
     23        psU8  **rows_u8;                        ///< pointers to psU8 data
     24        psU16 **rows_u16;                       ///< pointers to psU16 data
     25        psU32 **rows_u32;                       ///< pointers to psU32 data
     26        psF32 **rows_f32;                       ///< pointers to psF32 data
     27        psF64 **rows_f64;                       ///< pointers to psF64 data
     28    } rows;
    2729    struct psImage *parent;             ///< parent, if a subimage
    2830    struct psImage *children;           ///< children of this region
Note: See TracChangeset for help on using the changeset viewer.