mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
14 lines
147 B
C
14 lines
147 B
C
|
#ifndef GLSYM_H__
|
||
|
#define GLSYM_H__
|
||
|
|
||
|
#include "rglgen.h"
|
||
|
|
||
|
#ifdef HAVE_OPENGLES2
|
||
|
#include "glsym_es2.h"
|
||
|
#else
|
||
|
#include "glsym_gl.h"
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|