mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-03 13:51:02 +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
|
|
|