SectrPrototype/code/text.odin

25 lines
551 B
Odin
Raw Normal View History

package sectr
2024-01-22 00:47:53 -08:00
import "core:unicode/utf8"
import rl "vendor:raylib"
debug_text :: proc( content : string, pos : Vec2, size : f32 = 16.0, color : rl.Color = rl.WHITE, font : rl.Font = {} )
{
if len( content ) == 0 {
return
}
2024-01-21 20:38:02 -08:00
runes := utf8.string_to_runes( content, context.temp_allocator )
2024-01-22 00:47:53 -08:00
font := font
if ( font.chars == nil ) {
font = get_state().default_font
2024-01-22 00:47:53 -08:00
}
rl.DrawTextCodepoints( font,
raw_data(runes), cast(i32) len(runes),
position = transmute(rl.Vector2) pos,
fontSize = size,
spacing = 0.0,
tint = color );
}