Landtiger LPC1768 C BigLib 1
A self made, custom C library for the LandTiger board.
 
Loading...
Searching...
No Matches
glcd_processor.h
Go to the documentation of this file.
1#ifndef __GLCD_PROC_H
2#define __GLCD_PROC_H
3
4#include "glcd_types.h"
5#include "types.h"
6
7// TYPES
8
9typedef enum
10{
12 MD_DELETE = 0x2,
13 MD_BBOX = 0x4,
16
17// PUBLIC FUNCTIONS
18
19bool __LCD_PROC_DoProcessObject(const LCD_Obj *const obj, LCD_BBox *out_bbox, u8 mode);
20
21#endif
__ProcessingMode
@ MD_DELETE
@ MD_DRAW_BBOX
@ MD_DELETE_FAST
@ MD_BBOX
bool __LCD_PROC_DoProcessObject(const LCD_Obj *const obj, LCD_BBox *out_bbox, u8 mode)
Represents a generic object, made up of 1 or more basic components, that are rendered on the screen.
Definition glcd_types.h:189
uint8_t u8
Definition types.h:8