Added libft and mlx

This commit is contained in:
Théo Champion 2025-05-03 22:54:55 +02:00
parent 8448ae3a23
commit 82d06d234a
122 changed files with 10400 additions and 0 deletions

View 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);
}