GenImageCellular method

  1. @override
ImageD GenImageCellular(
  1. num width,
  2. num height,
  3. num tileSize
)
override

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(),
    ),
  ),
);