Declaration of types for Graphic Library.
int16_t gl_coord_t
Definition gl_types.h:104
uint16_t gl_uint_t
Definition gl_types.h:93
uint16_t gl_angle_t
Definition gl_types.h:97
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.
void gl_draw_point(gl_coord_t x, gl_coord_t y)
Draw point to display driver using previously set pen.
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 rounded rectangle to diplsay driver using previously set pen and brush.
void gl_draw_line(gl_coord_t x1, gl_coord_t y1, gl_coord_t x2, gl_coord_t y2)
Draw line AB to display driver using previously set pen.
void gl_draw_circle(gl_coord_t x0, gl_coord_t y0, gl_uint_t radius)
Draw circleto display driver using previously set pen and brush.
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 arc with center in given x and y coordinates and radius size. The start (end) of the arc is dete...
void gl_draw_rect(gl_coord_t top_left_x, gl_coord_t top_left_y, gl_uint_t width, gl_uint_t height)
Draws rectangle to displey driver with top left corner positioned at top_left_x and top_left_y coordi...