void *pl_fbdev_flip(void) { flip_cnt++; if (pl_fbdev_buf != NULL) { if (hud_msg[0] != 0) print_hud(); else if (g_opts & OPT_SHOWFPS) print_fps(); if (g_opts & OPT_SHOWCPU) print_cpu_usage(); } // let's flip now pl_fbdev_buf = vout_fbdev_flip(layer_fb); return pl_fbdev_buf; }
int expose_hook(t_disp *d) { mlx_put_image_to_window(d->mlx, d->win, d->img->ptr, 0, 0); print_hud(d); return (0); }