13 lines
372 B
C++
13 lines
372 B
C++
/* ================================================================
|
|
This file provides common includes to access OpenGL types and functions
|
|
================================================================ */
|
|
#if defined(__IPHONEOS__) || defined(__ANDROID__)
|
|
#define HAVE_OPENGLES
|
|
#endif
|
|
|
|
#ifdef HAVE_OPENGLES
|
|
#include "SDL_opengles.h"
|
|
#else
|
|
#include "SDL_opengl.h"
|
|
#endif
|