mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-11 05:16:12 +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
|
|
|