LoadImageRaw method
Load image from RAW file data
Implementation
@override
ImageD LoadImageRaw(
MemoryPointer<RChar> fileName,
int width,
int height,
int format,
int headerSize,
) => $.Image$.RefCapture(
RaylibCaptureIds.LoadImageRaw,
(p) => _ffi.LoadImageRaw(
fileName.asNativePointer(),
width,
height,
format,
headerSize,
).toDart(p.asNativePointer()),
);