mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-10 04:27:45 -05:00
This function fills in a struct glyph with glyph bitmap data for the provided utf-8 character (essentially a FT_Bitmap wrapped in a cairo surface).
8 lines
213 B
C
8 lines
213 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "terminal.h"
|
|
|
|
bool font_from_name(const char *name, struct font *result);
|
|
bool font_glyph_for_utf8(
|
|
const struct font *font, const char *utf8, struct glyph *glyph);
|