gg: fix `v -d show_fps run examples/gg/stars.v`

master
Delyan Angelov 2022-06-12 15:15:53 +03:00
parent 7e06203da8
commit 4682e17ac1
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 3 additions and 0 deletions

View File

@ -529,6 +529,9 @@ pub fn (ctx &Context) show_fps() {
if !ctx.font_inited {
return
}
sgl.defaults()
sgl.matrix_mode_projection()
sgl.ortho(0.0, f32(sapp.width()), f32(sapp.height()), 0.0, -1.0, 1.0)
frame_duration := sapp.frame_duration()
fps_text := '${1 / frame_duration:2.0f}'
ctx.set_cfg(ctx.fps.text_config)