Renderer.drawPoint - multiple declarations

Function Renderer.drawPoint

Wraps SDL_RenderDrawPoint which draws a single point at a given position with the renderer's draw color

void drawPoint (
  Point point
) @trusted;

Parameters

NameDescription
point dsdl2.Point position the point is drawn at

Throws

dsdl2.SDLException if point failed to draw

Function Renderer.drawPoint

Wraps SDL_RenderDrawPointF (from SDL 2.0.10) which draws a single point at a given position with the renderer's draw color

void drawPoint (
  FPoint point
) @trusted;

Parameters

NameDescription
point dsdl2.FPoint position the point is drawn at

Throws

dsdl2.SDLException if point failed to draw