mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
Added libft and mlx
This commit is contained in:
parent
8448ae3a23
commit
82d06d234a
122 changed files with 10400 additions and 0 deletions
23
mlx/mlx_int_wait_first_expose.c
Normal file
23
mlx/mlx_int_wait_first_expose.c
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
** mlx_int_wait_first_expose.c for minilibx in
|
||||
**
|
||||
** Made by olivier crouzet
|
||||
** Login <ol@epita.fr>
|
||||
**
|
||||
** Started on Tue Oct 17 09:26:45 2000 olivier crouzet
|
||||
** Last update Fri Feb 23 17:27:10 2001 Charlie Root
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "mlx_int.h"
|
||||
|
||||
|
||||
|
||||
int mlx_int_wait_first_expose(t_xvar *xvar,Window win)
|
||||
{
|
||||
XEvent ev;
|
||||
|
||||
XWindowEvent(xvar->display,win,ExposureMask,&ev);
|
||||
XPutBackEvent(xvar->display,&ev);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue