Mainly font_size is u16 on measure_text but f32 on draw_text.
The order of params and the way they're passed. I think it would be nice if measure text took TextParams just like draw_text_ex so people would be able to use the same struct for both calls and avoid keeping those two calls in sync.
A nitpick: Both draw_texture/draw_texture_ex take color the same way (as a param) but draw_text/draw_text_ex are different (the latter takes font_size and color as part of TextParams) so the extra parameter is not purely additive. Also font_size in TextParams is u16 again.
Mainly font_size is u16 on measure_text but f32 on draw_text.
The order of params and the way they're passed. I think it would be nice if measure text took TextParams just like draw_text_ex so people would be able to use the same struct for both calls and avoid keeping those two calls in sync.
A nitpick: Both draw_texture/draw_texture_ex take color the same way (as a param) but draw_text/draw_text_ex are different (the latter takes font_size and color as part of TextParams) so the extra parameter is not purely additive. Also font_size in TextParams is u16 again.