summaryrefslogtreecommitdiff
path: root/text.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-01 23:47:52 -0500
committerpommicket <pommicket@gmail.com>2023-01-01 23:47:52 -0500
commit20ac640a6d0b8eb6343709ae6ef921b41a31a726 (patch)
tree32165e91d2851b35cae59691b84dfaf4aecc7b4d /text.h
parent8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (diff)
restructure syntax.c
Diffstat (limited to 'text.h')
-rw-r--r--text.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.h b/text.h
index 8f7db58..dbfb82c 100644
--- a/text.h
+++ b/text.h
@@ -58,7 +58,7 @@ void text_font_set_force_monospace(Font *font, bool force);
// Get the dimensions of some text.
void text_get_size(Font *font, const char *text, float *width, float *height);
v2 text_get_size_v2(Font *font, const char *text);
-void text_get_size32(Font *font, char32_t const *text, u64 len, float *width, float *height);
+void text_get_size32(Font *font, const char32_t *text, u64 len, float *width, float *height);
void text_utf8(Font *font, const char *text, double x, double y, u32 color);
void text_utf8_anchored(Font *font, const char *text, double x, double y, u32 color, Anchor anchor);
void text_char_with_state(Font *font, TextRenderState *state, char32_t c);