pixelColor function

bool pixelColor(
  1. Pointer<SdlRenderer> renderer,
  2. double x,
  3. double y,
  4. int color,
)

Implementation

bool pixelColor(Pointer<SdlRenderer> renderer, double x, double y, int color) {
  var co = Uint32List.fromList([color]).buffer.asUint8List();
  return pixelRgba(renderer, x, y, co[0], co[1], co[2], co[3]);
}