projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Moved the font stuff into its own file.
[ccbs]
/
bigscreen
/
fonts.h
1
#ifndef _FONTS_H
2
#define _FONTS_H 1
3
4
#include <ft2build.h>
5
#include FT_FREETYPE_H
6
#include <vector>
7
#include "widestring.h"
8
9
void init_freetype();
10
int my_draw_text(const widestring &str, unsigned char *buf, int xpos, int ypos, bool real_render, int r, int g, int b);
11
12
#endif /* !defined(_FONTS_H) */