From 9bbc949c432f6a981fdac5aec4b36edd2f4dcdba Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 4 Mar 2020 11:09:50 +0100 Subject: Linux branch with minilibx_linux(https://framagit.org/ggenois/minilibx_linux) --- minilibx/mlx_clear_window.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 minilibx/mlx_clear_window.c (limited to 'minilibx/mlx_clear_window.c') diff --git a/minilibx/mlx_clear_window.c b/minilibx/mlx_clear_window.c new file mode 100755 index 0000000..f621090 --- /dev/null +++ b/minilibx/mlx_clear_window.c @@ -0,0 +1,21 @@ +/* +** mlx_clear_window.c for MiniLibX in +** +** Made by Charlie Root +** Login +** +** Started on Thu Sep 7 19:46:15 2000 Charlie Root +** Last update Tue Sep 25 17:11:19 2001 Charlie Root +*/ + + + +#include "mlx_int.h" + + +int mlx_clear_window(t_xvar *xvar,t_win_list *win) +{ + XClearWindow(xvar->display,win->window); + if (xvar->do_flush) + XFlush(xvar->display); +} -- cgit