blob: 86e2247608970c2e81e76e8808e41b08b2a0c408 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef GLYPH_H
#define GLYPH_H
#ifdef __cplusplus
extern "C" {
#endif
extern double text_width;
extern double text_height;
void draw_glyph(int);
void draw_string(const char *s);
void draw_string_centered(const char *s);
void set_text_size(const double ttext_width, const double ttext_height);
#ifdef __cplusplus
};
#endif
#endif
|