mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
Backport changes
This commit is contained in:
parent
49c85f47c3
commit
df1c0bc9b4
@ -1,4 +1,4 @@
|
||||
#include "glsym.h"
|
||||
#include "glsym/glsym.h"
|
||||
#include <stddef.h>
|
||||
#define SYM(x) { "gl" #x, &(gl##x) }
|
||||
const struct rglgen_sym_map rglgen_symbol_map[] = {
|
||||
|
@ -26,8 +26,10 @@
|
||||
#include "rglgen.h"
|
||||
|
||||
#ifndef HAVE_PSGL
|
||||
#ifdef HAVE_OPENGLES2
|
||||
#if defined(HAVE_OPENGLES2)
|
||||
#include "glsym_es2.h"
|
||||
#elif defined(HAVE_OPENGLES3)
|
||||
#include "glsym_es3.h"
|
||||
#else
|
||||
#include "glsym_gl.h"
|
||||
#endif
|
||||
|
@ -49,7 +49,7 @@
|
||||
#include <GL3/gl3ext.h>
|
||||
#elif defined(HAVE_OPENGLES3)
|
||||
#include <GLES3/gl3.h>
|
||||
#include <GLES2/gl2ext.h> /* There are no GLES3 extensions yet. */
|
||||
#include <GLES3/gl3ext.h>
|
||||
#elif defined(HAVE_OPENGLES2)
|
||||
#include <GLES2/gl2.h>
|
||||
#include <GLES2/gl2ext.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user