summaryrefslogtreecommitdiff
path: root/mlx/mlx_opengl.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-10 10:57:56 +0200
committerDominik Kaiser2024-05-10 10:57:56 +0200
commit302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d (patch)
tree8a84a5856db24780604b49f5303c817a4bb50317 /mlx/mlx_opengl.h
parente206d293aa947dc56fa8408c42dccaff9cb423c3 (diff)
downloadso_long-302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d.tar.gz
so_long-302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d.zip
Remove old MiniLibX
Diffstat (limited to 'mlx/mlx_opengl.h')
-rw-r--r--mlx/mlx_opengl.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/mlx/mlx_opengl.h b/mlx/mlx_opengl.h
deleted file mode 100644
index bb39267..0000000
--- a/mlx/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 */