GenImageCellular method
Implementation
@override
ImageD GenImageCellular(
num width,
num height,
num tileSize,
) => run(
() => RaylibDebugLabels.GenImageCellular(width, height, tileSize),
() => rl.Temp.Image$.RefCapture(
RaylibCaptureIds.GenImageCellular(width, height, tileSize),
(_) => rl.Core.GenImageCellular(
width.toInt(),
height.toInt(),
tileSize.toInt(),
),
),
);