inverse_thermal_camera/src/font.h
2018-08-04 11:30:00 +02:00

18 lines
243 B
C

#pragma once
#include <stdint.h>
#include <stddef.h>
typedef struct
{
int width;
const uint8_t *bitmap;
} FontGlyph_t;
typedef struct
{
int height;
int charoffset;
int glyphcount;
const FontGlyph_t *glyphs;
} Font_t;