rlBindImageTexture method
Bind image texture
Implementation
void rlBindImageTexture(
num id,
num index,
PixelFormat format,
bool readonly,
) => run(
() => _debugLabels.rlBindImageTexture(id, index, format, readonly),
() => _flat.rlBindImageTexture(
id.toInt(),
index.toInt(),
format.value,
readonly,
),
);