mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
40a18f65bb
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3734 fc73d0e0-1445-4013-8a0c-d673dee63da5
16 lines
399 B
C
16 lines
399 B
C
#ifndef __GL_VIDGLES_H__
|
|
#define __GL_VIDGLES_H__
|
|
|
|
#include "quakedef.h"
|
|
#include <EGL/egl.h>
|
|
#include <dlfcn.h>
|
|
|
|
void *EGL_Proc(char *f);
|
|
void EGL_UnloadLibrary(void);
|
|
qboolean EGL_LoadLibrary(char *driver);
|
|
void EGL_Shutdown(void);
|
|
void EGL_BeginRendering (void);
|
|
void EGL_EndRendering (void);
|
|
qboolean EGL_Init (rendererstate_t *info, unsigned char *palette, EGLNativeWindowType window);
|
|
|
|
#endif
|