moonlight-qt/config.tests/EGL/main.cpp

14 lines
221 B
C++
Raw Normal View History

2020-05-15 23:46:03 +00:00
#include <SDL_egl.h>
#include <SDL_opengles2.h>
2020-05-16 19:13:00 +00:00
#ifndef EGL_VERSION_1_4
#error EGLRenderer requires EGL 1.4
2020-05-15 23:46:03 +00:00
#endif
#ifndef GL_ES_VERSION_2_0
#error EGLRenderer requires OpenGL ES 2.0
#endif
int main() {
return 0;
}