vlineColor function

bool vlineColor(
  1. Pointer<SdlRenderer> renderer,
  2. double x,
  3. double y1,
  4. double y2,
  5. SdlxColor color, {
  6. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool vlineColor(
  Pointer<SdlRenderer> renderer,
  double x,
  double y1,
  double y2,
  SdlxColor color, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => vlineRgba(
  renderer,
  x,
  y1,
  y2,
  color.r,
  color.g,
  color.b,
  color.a,
  blendMode: blendMode,
);