Changeset 1216 for trunk/psLib/src/sysUtils
- Timestamp:
- Jul 14, 2004, 1:22:49 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sysUtils/psType.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sysUtils/psType.h
r974 r1216 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 6-10 01:58:06$12 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-14 23:22:49 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include <complex.h> 22 22 #include <stdint.h> 23 #include <float.h> 23 24 24 25 /// @addtogroup DataContainer … … 69 70 #define PS_TYPE_MASK PS_TYPE_U8 ///< the psElemType to use for mask image 70 71 typedef psU8 psMaskType; ///< the C datatype for a mask image 72 73 #define PS_MIN_S8 INT8_MIN 74 #define PS_MIN_S16 INT16_MIN 75 #define PS_MIN_S32 INT32_MIN 76 #define PS_MIN_S64 INT64_MIN 77 #define PS_MIN_U8 0 78 #define PS_MIN_U16 0 79 #define PS_MIN_U32 0 80 #define PS_MIN_U64 0 81 #define PS_MIN_F32 FLT_MIN 82 #define PS_MIN_F64 DBL_MIN 83 #define PS_MIN_C32 FLT_MIN 84 #define PS_MIN_C64 DBL_MIN 85 86 #define PS_MAX_S8 INT8_MAX 87 #define PS_MAX_S16 INT16_MAX 88 #define PS_MAX_S32 INT32_MAX 89 #define PS_MAX_S64 INT64_MAX 90 #define PS_MAX_U8 UINT8_MAX 91 #define PS_MAX_U16 UINT16_MAX 92 #define PS_MAX_U32 UINT32_MAX 93 #define PS_MAX_U64 UINT64_MAX 94 #define PS_MAX_F32 FLT_MAX 95 #define PS_MAX_F64 DBL_MAX 96 #define PS_MAX_C32 FLT_MAX 97 #define PS_MAX_C64 DBL_MAX 71 98 72 99 /// Macro to get the bad pixel reason code (stored as part of mask value)
Note:
See TracChangeset
for help on using the changeset viewer.
