mikroSDK Reference Manual
|
Go to the source code of this file.
Functions | |
void | gl_draw_rect (gl_coord_t top_left_x, gl_coord_t top_left_y, gl_uint_t width, gl_uint_t height) |
Draw a rectangle on display. More... | |
void | gl_draw_rect_rounded (gl_coord_t top_left_x, gl_coord_t top_left_y, gl_uint_t width, gl_uint_t height, gl_uint_t radius) |
Draw a rounded rectangle on display. More... | |
void | gl_draw_point (gl_coord_t x, gl_coord_t y) |
Draw a point on display. More... | |
void | gl_draw_line (gl_coord_t x1, gl_coord_t y1, gl_coord_t x2, gl_coord_t y2) |
Draw a line on the display. More... | |
void | gl_draw_circle (gl_coord_t x0, gl_coord_t y0, gl_uint_t radius) |
Draw a circle on display. More... | |
void | gl_draw_ellipse (gl_coord_t x0, gl_coord_t y0, gl_uint_t half_a, gl_uint_t half_b) |
Draw ellipse to the display driver using previously set pen and brush. More... | |
void | gl_draw_arc (gl_coord_t x, gl_coord_t y, gl_uint_t radius, gl_angle_t start, gl_angle_t end) |
Draw an arc on display. More... | |