mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-13 20:33:22 +00:00
16 lines
172 B
C
16 lines
172 B
C
#ifndef GLSYM_H__
|
|
#define GLSYM_H__
|
|
|
|
#include "rglgen.h"
|
|
|
|
#ifndef HAVE_PSGL
|
|
#ifdef HAVE_OPENGLES2
|
|
#include "glsym_es2.h"
|
|
#else
|
|
#include "glsym_gl.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|
|
|