]> git.bts.cx Git - benzene.git/blob - src/bz/gfx/font_internal.h
Fixed Aseprite rendering system
[benzene.git] / src / bz / gfx / font_internal.h
1 #ifndef BZ_GFX_FONT_INTERNAL_H
2 #define BZ_GFX_FONT_INTERNAL_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <bz/gfx/font.h>
9
10 typedef void (*BZFontRenderPixelSetFunction)(int, int, int);
11
12 extern void bzGfxRenderFont(BZFontRenderPixelSetFunction pixelSetFunction, int *xPosition, int *yPosition, BZFontID font, int color, const char *text);
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif