max property
override
The maximum value for the pixel format.
This value typically represents opaque and/or full (white) pixels.
Example
print(abgr8888.max); // 0xFFFFFFFF
print(floatRgba.max); // [1.0, 1.0, 1.0, 1.0]
Implementation
@override
Float32x4 get max => Float32x4.splat(1.0);