aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/font.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-02-15 23:52:21 +0100
committerdec05eba <dec05eba@protonmail.com>2022-02-15 23:52:21 +0100
commit6042e1843023e1f4e0f4c60da8458703b3bc58cf (patch)
treeef32c36ab78fb4d292ffd96681b4beee28a27b63 /src/graphics/font.c
parentcac754b9f5d4695bd6416ac94fcab22423a854f9 (diff)
Revert text offset y fix because it breaks quickmedia. Revert vertex draw texture coordinate reset because it breaks quickmedia
Diffstat (limited to 'src/graphics/font.c')
-rw-r--r--src/graphics/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics/font.c b/src/graphics/font.c
index 9a99f22..8c55044 100644
--- a/src/graphics/font.c
+++ b/src/graphics/font.c
@@ -227,7 +227,7 @@ int mgl_font_get_glyph(mgl_font *self, uint32_t codepoint, mgl_font_glyph *glyph
render_offset.y = self->font_atlas.pointer_position.y;
mgl_font_glyph new_glyph;
- new_glyph.position = (mgl_vec2i){ xoff/GLYPH_UPSAMPLE, self->ascent + yoff/GLYPH_UPSAMPLE };
+ new_glyph.position = (mgl_vec2i){ xoff/GLYPH_UPSAMPLE, yoff/GLYPH_UPSAMPLE };
new_glyph.size = (mgl_vec2i){ width/GLYPH_UPSAMPLE, height/GLYPH_UPSAMPLE };
new_glyph.texture_position = (mgl_vec2i){ render_offset.x, render_offset.y };
new_glyph.texture_size = (mgl_vec2i){ width, height };