mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-13 23:02:12 +02:00
15 lines
159 B
C
15 lines
159 B
C
#ifndef OPENGL_H
|
|
#define OPENGL_H
|
|
|
|
#ifdef __unix__
|
|
#define GL_GLEXT_PROTOTYPES
|
|
#include <GL/gl.h>
|
|
#endif
|
|
|
|
#ifdef _WIN64
|
|
#include <glad/glad.h>
|
|
#endif
|
|
|
|
|
|
#endif
|