aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/QImage/gdisp_lld_qimage.h
blob: 5e6aea1f5f43d3b69200b0731b35f7640d7d4525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "../../../gfx.h"

/* This test is needed as this file is also included in the .cpp file providing the below functions */
#ifdef __cplusplus
extern "C" {
#endif

gBool qimage_init(GDisplay* g, gCoord width, gCoord height);
void qimage_setPixel(GDisplay* g);
gColor qimage_getPixel(GDisplay* g);

#ifdef __cplusplus
}
#endif