aboutsummaryrefslogtreecommitdiffstats
path: root/minilibx-linux/mlx_int_wait_first_expose.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-14 18:14:57 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-14 18:14:57 +0200
commit7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5 (patch)
tree2ee39c37e77d6a82658f92aaa90f662b122d95af /minilibx-linux/mlx_int_wait_first_expose.c
parenttest (diff)
download42-cub3d-7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5.tar.gz
42-cub3d-7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5.tar.bz2
42-cub3d-7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5.tar.xz
42-cub3d-7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5.tar.zst
42-cub3d-7f22d45d5f5aae7efbe9c58317fc8e0713aee7b5.zip
New lib
Diffstat (limited to '')
-rw-r--r--minilibx-linux/mlx_int_wait_first_expose.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/minilibx-linux/mlx_int_wait_first_expose.c b/minilibx-linux/mlx_int_wait_first_expose.c
new file mode 100644
index 0000000..0d549ee
--- /dev/null
+++ b/minilibx-linux/mlx_int_wait_first_expose.c
@@ -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);
+}