Changeset 253 for trunk/archive/pslib/include/psImage.h
- Timestamp:
- Mar 17, 2004, 5:33:48 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psImage.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psImage.h
r251 r253 16 16 int nx, ny; ///< size of image 17 17 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; 27 29 struct psImage *parent; ///< parent, if a subimage 28 30 struct psImage *children; ///< children of this region
Note:
See TracChangeset
for help on using the changeset viewer.
