7e80062ab9
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4622 fc73d0e0-1445-4013-8a0c-d673dee63da5
16 lines
435 B
C
16 lines
435 B
C
#ifndef __GL_VIDEGL_H__
|
|
#define __GL_VIDEGL_H__
|
|
|
|
#include "quakedef.h"
|
|
#define NativeWindowType EGLNativeWindowType
|
|
#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_SwapBuffers (void);
|
|
qboolean EGL_Init (rendererstate_t *info, unsigned char *palette, EGLNativeWindowType window, EGLNativeDisplayType dpy);
|
|
|
|
#endif
|