ImageDither method
Implementation
@override
void ImageDither(
ImageD image,
num rBpp,
num gBpp,
num bBpp,
num aBpp,
) => run(
() => RaylibDebugLabels.ImageDither(image, rBpp, gBpp, bBpp, aBpp),
() => rl.Temp.Image$.RefUpdate1(image,
(p) => rl.Core.ImageDither(
p,
rBpp.toInt(),
gBpp.toInt(),
bBpp.toInt(),
aBpp.toInt(),
),
),
);