From 898b8c95f1f904307c02e978b57301cf1cb0560f Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 23 Oct 2021 01:39:57 +0200 Subject: Allow rendering vertices directly --- src/graphics/text.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/graphics/text.c') diff --git a/src/graphics/text.c b/src/graphics/text.c index 7f90216..e7b31a0 100644 --- a/src/graphics/text.c +++ b/src/graphics/text.c @@ -14,6 +14,10 @@ void mgl_text_deinit(mgl_text *self) { } +void mgl_text_set_string(mgl_text *self, const char *str) { + self->text = str; +} + void mgl_text_set_position(mgl_text *self, mgl_vec2f position) { self->position = position; } @@ -40,6 +44,9 @@ static void mgl_text_draw_glyph(mgl_context *context, mgl_font_glyph *glyph, mgl /* TODO: Cache texture bind to not bind texture if its already bound and do not bind texture 0 */ void mgl_text_draw(mgl_context *context, mgl_text *text) { const char *str = text->text; + if(!str) + return; + mgl_font_glyph glyph; mgl_vec2f position = text->position; position.y += text->font->character_size; -- cgit v1.2.3