mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-20 15:22:42 +00:00
13 lines
224 B
C
13 lines
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 |