Fix bad OpenGL bu

This commit is contained in:
AlexandreRouma
2022-01-22 18:13:46 +01:00
parent 6dc97de57b
commit 9d7c1369ca
5 changed files with 14 additions and 16 deletions

View File

@ -0,0 +1,10 @@
#pragma once
#if defined(_WIN32)
#include <windows.h>
#include <GL/gl.h>
#elif define(__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif