mirror of
https://github.com/AlexandreRouma/SDRPlusPlus
synced 2026-08-13 17:37:08 -04:00
13 lines
No EOL
224 B
C
13 lines
No EOL
224 B
C
#pragma once
|
|
|
|
#if defined(_WIN32)
|
|
#include <windows.h>
|
|
#include <GL/gl.h>
|
|
#elif defined(__APPLE__)
|
|
#include <OpenGL/gl.h>
|
|
#elif defined(__ANDROID__)
|
|
#include <EGL/egl.h>
|
|
#include <GLES3/gl3.h>
|
|
#else
|
|
#include <GL/gl.h>
|
|
#endif |