Public Methods |
void | DisplayGraphics_draw_bitmap (struct DisplayGraphics *ptr_gfx, struct Bitmap *bmp, int left, int top, int fm) |
int | DisplayGraphics_draw_char (struct DisplayGraphics *ptr_gfx, int fx, int fy, char_t fc) |
void | DisplayGraphics_draw_hline (struct DisplayGraphics *ptr_gfx, int x, int y, int xx) |
void | DisplayGraphics_draw_vline (struct DisplayGraphics *ptr_gfx, int x, int y, int yy) |
void | DisplayGraphics_draw_line (struct DisplayGraphics *ptr_gfx, int x, int y, int xx, int yy) |
void | DisplayGraphics_draw_rect (struct DisplayGraphics *ptr_gfx, int fx, int fy, int fw, int fh) |
void | DisplayGraphics_draw_rect_Ex (struct DisplayGraphics *ptr_gfx, struct rect_t *ptr_rectangle) |
void | DisplayGraphics_draw_text (struct DisplayGraphics *ptr_gfx, char *text, int left, int top) |
void | DisplayGraphics_draw_text_Ex (struct DisplayGraphics *ptr_gfx, char *text, int left, int top, int flen) |
void | DisplayGraphics_fill_rect (struct DisplayGraphics *ptr_gfx, int fx,int fy, int fw, int fh) |
void | DisplayGraphics_fill_rect_Ex (struct DisplayGraphics *ptr_gfx, struct rect_t *ptr_rectangle) |
void | DisplayGraphics_fill_screen (struct DisplayGraphics *ptr_gfx, color_t fc) |
void | DisplayGraphics_flip (struct DisplayGraphics *ptr_gfx) |
int | DisplayGraphics_get_char_height (struct DisplayGraphics *ptr_gfx) |
int | DisplayGraphics_get_char_width (struct DisplayGraphics *ptr_gfx, char chr) |
void | DisplayGraphics_get_clip (struct DisplayGraphics *ptr_gfx, struct rect_t *ptr_rectangle) |
color_t | DisplayGraphics_get_color (struct DisplayGraphics *ptr_gfx) |
drawmode_t | DisplayGraphics_get_draw_mode (struct DisplayGraphics *ptr_gfx) |
struct Font* | DisplayGraphics_get_font (struct DisplayGraphics *ptr_gfx) |
int | DisplayGraphics_get_page (struct DisplayGraphics *ptr_gfx) |
int | DisplayGraphics_get_bytes_total (struct DisplayGraphics *ptr_gfx) |
char* | DisplayGraphics_get_page_ptr (struct DisplayGraphics *ptr_gfx, int page) |
color_t | DisplayGraphics_get_pixel (struct DisplayGraphics *ptr_gfx, int fx, int fy) |
int | DisplayGraphics_string_width (struct DisplayGraphics *ptr_gfx, char *string) |
int | DisplayGraphics_string_width_Ex (struct DisplayGraphics *ptr_gfx, char *string, int flen) |
void | DisplayGraphics_page_copy (struct DisplayGraphics *ptr_gfx, int from_page, int to_page, int x, int y, int w, int h) |
void | DisplayGraphics_page_copy_Ex (struct DisplayGraphics *ptr_gfx, int from_page, int to_page, struct rect_t *rc) |
void | DisplayGraphics_scroll (struct DisplayGraphics *ptr_gfx, struct rect_t *ptr_rectangle, int dx, int dy) |
void | DisplayGraphics_set_bitmap (struct DisplayGraphics *ptr_gfx, struct Bitmap *bmp) |
void | DisplayGraphics_put_background (struct DisplayGraphics *ptr_gfx, char *ptr_background) |
char* | DisplayGraphics_get_buf_addr (struct DisplayGraphics *ptr_gfx) |
void | DisplayGraphics_set_bkcolor (struct DisplayGraphics *ptr_gfx, color_t fc) |
void | DisplayGraphics_set_clip (struct DisplayGraphics *ptr_gfx, int fx, int fy, int fw, int fh) |
void | DisplayGraphics_set_clip_Ex (struct DisplayGraphics *ptr_gfx, struct rect_t *ptr_rectangle) |
void | DisplayGraphics_set_color (struct DisplayGraphics *ptr_gfx, color_t fc) |
void | DisplayGraphics_set_draw_mode (struct DisplayGraphics *ptr_gfx, drawmode_t dm) |
void | DisplayGraphics_set_font (struct DisplayGraphics *ptr_gfx, struct Font *font) |
void | DisplayGraphics_set_pixel (struct DisplayGraphics *ptr_gfx, int fx, int fy, color_t fc) |
void | DisplayGraphics_set_page (struct DisplayGraphics *ptr_gfx, int page) |
void | DisplayGraphics_show (struct DisplayGraphics *ptr_gfx) |
void | DisplayGraphics_show_Ex (struct DisplayGraphics *ptr_gfx, int page) |