https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: fc5fe8dd84bb342207f75fad61fd28ffab80fb8d authored by hudson@kremvax on 08 July 2009, 02:37:24 UTC
Zebra adjustments to avoid writing over the recording circle
Tip revision: fc5fe8d
font.h
/** \file
 * Internal bitmap font representation
 *
 */
#ifndef _font_h_
#define _font_h_

struct font
{
	unsigned	height;
	unsigned	width;
	unsigned 	bitmap[];
};


extern struct font font_small, font_med, font_large;

#endif
back to top