SDRPlusPlus/core/src/utils/opengl_include_code.h

13 wiersze
224 B
C
Czysty Zwykły widok Historia

2022-01-22 17:13:46 +00:00
#pragma once
#if defined(_WIN32)
#include <windows.h>
#include <GL/gl.h>
2022-01-22 18:22:58 +00:00
#elif defined(__APPLE__)
2022-01-22 17:13:46 +00:00
#include <OpenGL/gl.h>
#elif defined(__ANDROID__)
#include <EGL/egl.h>
#include <GLES3/gl3.h>
2022-01-22 17:13:46 +00:00
#else
#include <GL/gl.h>
#endif