aboutsummaryrefslogtreecommitdiff
path: root/minilibx/mlx_opengl.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-08 22:53:57 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-08 22:53:57 +0100
commitfafabad0906ff9641b0c6183fda8b07745579dfb (patch)
tree64e57f2b72b3986aa3869924567ce459a1da5433 /minilibx/mlx_opengl.h
parentf52b4ad77158b52fad161e98e116059ac5b68d3d (diff)
downloadcub3d-fafabad0906ff9641b0c6183fda8b07745579dfb.tar.gz
cub3d-fafabad0906ff9641b0c6183fda8b07745579dfb.tar.bz2
cub3d-fafabad0906ff9641b0c6183fda8b07745579dfb.zip
Linux versionlinux
Diffstat (limited to 'minilibx/mlx_opengl.h')
-rw-r--r--minilibx/mlx_opengl.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/minilibx/mlx_opengl.h b/minilibx/mlx_opengl.h
deleted file mode 100644
index bb39267..0000000
--- a/minilibx/mlx_opengl.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
-**
-** mlx_opengl.h
-**
-** public include, use it after mlx.h
-** designed only for minilibx_macos
-**
-*/
-
-void *mlx_new_opengl_window(void *mlx_ptr, int size_x, int size_y, char *title);
-
-/* create an opengl window. put_image & pixel_put & string_put do not work there. */
-
-int mlx_opengl_swap_buffers(void *win_ptr);
-
-/* the created window is double buffered. Use this funct to swap buffers */
-/* this funct will call glFlush(). Don't call it. */
-
-int mlx_opengl_window_set_context(void *win_ptr);
-
-/* in case multiple opengl windows are present, change opengl active context */