adjust kerning to be rounded, rather than floor'd; adjust step-out desc

This commit is contained in:
Ryan Fleury
2026-05-11 19:53:54 -07:00
parent 9eaff99bbb
commit d45090a8cc
3 changed files with 3 additions and 3 deletions
@@ -583,7 +583,7 @@ fp_raster(Arena *arena, FP_Handle font_handle, F32 size, FP_RasterFlags flags, S
// rjf: fill basics
result.atlas_dim = atlas_dim;
result.atlas = push_array_no_zero(arena, U8, atlas_dim.x*atlas_dim.y*4);
result.advance = floor_f32(advance);
result.advance = round_f32(advance);
// rjf: fill atlas
{