Project

General

Profile

Statistics
| Revision:

root / proj / include / graph.h @ 212

History | View | Annotate | Download (1.13 KB)

1 168 up20180642
#ifndef GRAPH_H_INCLUDED
2
#define GRAPH_H_INCLUDED
3
4 183 up20180642
#include "graph_macros.h"
5
6 174 up20180642
/// MACROS
7 183 up20180642
#define GET_ALP(n)          (0xFF & ((n) >> 24))
8 168 up20180642
#define GET_RED(n)          (0xFF & ((n) >> 16))
9
#define GET_GRE(n)          (0xFF & ((n) >>  8))
10
#define GET_BLU(n)          (0xFF & (n      ))
11 183 up20180642
#define GET_COLOR(n)        (0xFFFFFF & (n))
12
#define SET_ALP(n)          (((n)&0xFF) << 24)
13 168 up20180642
#define SET_RED(n)          (((n)&0xFF) << 16)
14
#define SET_GRE(n)          (((n)&0xFF) <<  8)
15
#define SET_BLU(n)          (((n)&0xFF)      )
16 174 up20180642
#define SET_RGB(r,g,b)      (SET_RED(r) | SET_GRE(g) | SET_BLU(b))
17 168 up20180642
18 174 up20180642
/// PUBLIC GET
19
uint16_t   (graph_get_XRes)         (void);
20
uint16_t   (graph_get_YRes)         (void);
21 208 up20180642
uint16_t   (graph_get_bytes_pixel)  (void);
22 168 up20180642
23 174 up20180642
/// INIT
24
int (graph_init)(uint16_t mode);
25 168 up20180642
26 174 up20180642
/// CLEANUP
27 168 up20180642
int (graph_cleanup)(void);
28
29 174 up20180642
/// PIXEL DRAWING
30 183 up20180642
int (graph_set_pixel)             (uint16_t x, uint16_t y, uint32_t color);
31 208 up20180642
void (graph_set_pixel_pos)         (unsigned pos          , uint32_t color);
32 168 up20180642
33 174 up20180642
/// SCREEN
34
int (graph_clear_screen)(void);
35 168 up20180642
36 174 up20180642
/// DRAW
37
int (graph_draw)(void);
38 168 up20180642
39
#endif /* end of include guard: GRAPH_H_INCLUDED */