Handles renderering pixels/sprites/etc to the screen. Code can be found in renderer.cpp. More...
Functions | |
void | Pixel (u32Vec2 position, Colour colour) |
Draw pixel to screen at given position. | |
void | Pixel (u32 x, u32 y, Colour colour) |
Draw pixel to screen at given position. | |
Handles renderering pixels/sprites/etc to the screen. Code can be found in renderer.cpp.
Encapsulates all the logic and functionalty for drawing to the screen
void draw::Pixel | ( | u32 | x, |
u32 | y, | ||
Colour | colour ) |
Draw pixel to screen at given position.
x | Horizontal conponent of position |
y | Vertical conponent of position |
colour | Colour that the pixel will draw |
Definition at line 24 of file renderer.cpp.
Draw pixel to screen at given position.
position | Position that pixel is drawn at |
colour | Colour that the pixel will draw |
Definition at line 19 of file renderer.cpp.