#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "hwlib.h"
#include "lcd_graphic.h"
#include "LCD_Lib.h"
#include "font.h"
Go to the source code of this file.
|
| void | DRAW_Pixel (LCD_CANVAS *pCanvas, int X, int Y, int Color) |
| |
| void | DRAW_Refresh (LCD_CANVAS *pCanvas) |
| |
| void | DRAW_Line (LCD_CANVAS *pCanvas, int X1, int Y1, int X2, int Y2, int Color) |
| |
| void | DRAW_Rect (LCD_CANVAS *pCanvas, int X1, int Y1, int X2, int Y2, int Color) |
| |
| void | DRAW_Circle (LCD_CANVAS *pCanvas, int x0, int y0, int Radius, int Color) |
| |
| void | DRAW_Clear (LCD_CANVAS *pCanvas, int nValue) |
| |
| void | DRAW_PrintChar (LCD_CANVAS *pCanvas, int X0, int Y0, char Text, int Color, FONT_TABLE *font_table) |
| | FONT API ///////////////////////////////////.
|
| |
| void | DRAW_PrintString (LCD_CANVAS *pCanvas, int X0, int Y0, char *pText, int Color, FONT_TABLE *font_table) |
| |
◆ DRAW_Circle()
| void DRAW_Circle |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | x0, |
|
|
int | y0, |
|
|
int | Radius, |
|
|
int | Color ) |
◆ DRAW_Clear()
| void DRAW_Clear |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | nValue ) |
◆ DRAW_Line()
| void DRAW_Line |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | X1, |
|
|
int | Y1, |
|
|
int | X2, |
|
|
int | Y2, |
|
|
int | Color ) |
◆ DRAW_Pixel()
| void DRAW_Pixel |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | X, |
|
|
int | Y, |
|
|
int | Color ) |
◆ DRAW_PrintChar()
| void DRAW_PrintChar |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | X0, |
|
|
int | Y0, |
|
|
char | Text, |
|
|
int | Color, |
|
|
FONT_TABLE * | font_table ) |
FONT API ///////////////////////////////////.
Definition at line 234 of file lcd_graphic.c.
◆ DRAW_PrintString()
| void DRAW_PrintString |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | X0, |
|
|
int | Y0, |
|
|
char * | pText, |
|
|
int | Color, |
|
|
FONT_TABLE * | font_table ) |
◆ DRAW_Rect()
| void DRAW_Rect |
( |
LCD_CANVAS * | pCanvas, |
|
|
int | X1, |
|
|
int | Y1, |
|
|
int | X2, |
|
|
int | Y2, |
|
|
int | Color ) |
◆ DRAW_Refresh()