blob: f7ed3e145ef6c9ecc18dce49350beec621cfda90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef LIBFONT_FONTS_H
#define LIBFONT_FONTS_H
#include <pland/syscall.h>
#include <stdbool.h>
#include <stdint.h>
struct font_info {
uint32_t space_width;
uint32_t space_height;
uint32_t char_width;
uint32_t char_height;
bool *bitmaps[256];//left to right then top to bottom
//null pointer for unsupported character
//unsupported characters drawn as bitmaps[0]
};
struct font_info *get_font(const char *name);
//pitch is in pixels
void put_char(const struct font_info *font, char ch, _pixel_t *pb_ptr, uint32_t pb_pitch, _pixel_t bg, _pixel_t fg);
#endif
|