summaryrefslogtreecommitdiff
path: root/txtfont.h
blob: c2b73f4116b7508c183549806ba55ebcb17bfcc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __TXTFONT_H
#define __TXTFONT_H

#include "txtrender.h"

unsigned int* GetFontChar(cTeletextChar c, unsigned int *buffer);
// Get a character bitmap for character/charset
// Also handle double width/height partial characters
// buffer must be an unsigned int[10] buffer, that *may* be used
// to store the character - a different pointer may be returned too.
// returns NULL if undefined character


#endif