mirror of
https://github.com/libretro/RetroArch
synced 2025-01-08 09:41:47 +00:00
16 lines
176 B
C
16 lines
176 B
C
#ifndef GLSYM_H__
|
|
#define GLSYM_H__
|
|
|
|
#include "rglgen.h"
|
|
|
|
#ifndef RARCH_CONSOLE
|
|
#ifdef HAVE_OPENGLES2
|
|
#include "glsym_es2.h"
|
|
#else
|
|
#include "glsym_gl.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|
|
|