Constants' Details |
CHUNKY_HALFFLOAT
const byte CHUNKY_HALFFLOAT =0;
- Description
- Half-float format, with chunky layout.
The color components are stored in the half-float format,
i.e. in a 16 bit value, with 5 bit exponent, 10 bit mantissa
and a sign bit. The bits of each value are stored consecutive
in memory.
|
|
PLANES_HALFFLOAT
const byte PLANES_HALFFLOAT =1;
- Description
- Half-float format, with plane layout.
The color components are stored in the half-float format,
i.e. in a 16 bit value, with 5 bit exponent, 10 bit mantissa
and a sign bit. The bits of each value are stored each bit in
a separate plane, i.e. a plane contains a single bit from
every pixel's components.
|
|
CHUNKY_FLOAT
const byte CHUNKY_FLOAT =2;
- Description
- IEEE float format, with chunky layout.
The color components are stored in the IEEE single-precision
floating point format, i.e. in a 32 bit value, with 8 bit
exponent, 23 bit mantissa and a sign bit. The bits of each
value are stored consecutive in memory.
|
|
PLANES_FLOAT
const byte PLANES_FLOAT =3;
- Description
- IEEE float format, with plane layout.
The color components are stored in the IEEE single-precision
floating point format, i.e. in a 32 bit value, with 8 bit
exponent, 23 bit mantissa and a sign bit. The bits of each
value are stored each bit in a separate plane, i.e. a plane
contains a single bit from every pixel's components.
|
|
CHUNKY_DOUBLE
const byte CHUNKY_DOUBLE =4;
- Description
- IEEE double format, with chunky layout.
The color components are stored in the IEEE double-precision
floating point format, i.e. in a 64 bit value, with 16 bit
exponent, 47 bit mantissa and a sign bit. The bits of each
value are stored consecutive in memory.
|
|
PLANES_DOUBLE
const byte PLANES_DOUBLE =5;
- Description
- IEEE double format, with chunky layout.
The color components are stored in the IEEE double-precision
floating point format, i.e. in a 64 bit value, with 16 bit
exponent, 47 bit mantissa and a sign bit. The bits of each
value are stored each bit in a separate plane, i.e. a plane
contains a single bit from every pixel's components.
|
|
Copyright © 2003 Sun Microsystems, Inc.