- clear
void clear()
Clear the current rendering target with the drawing color.
- close
deprecated void close()
Undocumented in source. Be warned that the author may not have intended to support it.
- copy
void copy(SDL2Texture texture, SDL_Rect srcRect, SDL_Rect dstRect)
Blit a rectangle from a texture.
- copy
void copy(SDL2Texture texture, int x, int y)
- copyEx
void copyEx(SDL2Texture texture, SDL_Rect srcRect, SDL_Rect dstRect, double rotangle, SDL_Point* rotcenter, SDL_RendererFlip flip)
Blits a rectangle from a texture and apply rotation/reflection.
- drawLine
void drawLine(int x1, int y1, int x2, int y2)
- drawLines
void drawLines(SDL_Point[] points)
Draw several lines at once.
- drawPoint
void drawPoint(int x, int y)
- drawPoints
void drawPoints(SDL_Point[] points)
Draw several point at once.
- drawRect
void drawRect(int x, int y, int width, int height)
Draw a rectangle outline.
- fillRect
void fillRect(int x, int y, int width, int height)
- info
SDL2RendererInfo info()
- present
void present()
Update the screen with rendering performed.
- setBlend
void setBlend(int blendMode)
- setColor
void setColor(int r, int g, int b, int a)
Sets the color used for drawing operations.
- setLogicalSize
void setLogicalSize(int w, int h)
Sets a device independent resolution of the renderer.
- setScale
void setScale(float x, float y)
Sets the scale of the renderer.
- setViewport
void setViewport(int x, int y, int w, int h)
Sets the window drawing area.
- setViewportFull
void setViewportFull()
Sets the whole window as drawing area.
SDL Renderer wrapper.