tcpconnect fixes
lots of hexen2 fixes fixed clipped decals again, still not using any... fixed zips over 2g rewrote bloom to use glsl. should be slightly more usable now. lots more hexen2 fixes git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3957 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5651e77c30
commit
fb214142a3
91 changed files with 4584 additions and 1270 deletions
|
@ -89,6 +89,10 @@ qboolean GLVID_Init (rendererstate_t *info, unsigned char *palette)
|
|||
Cons: GL_EndRendering call will not swap buffers. Buffers will be swapped on return to java.
|
||||
*/
|
||||
|
||||
if (gles2)
|
||||
Sys_Printf("Loading GLES2 driver\n");
|
||||
else
|
||||
Sys_Printf("Loading GLES1 driver\n");
|
||||
sys_gl_module = Sys_LoadLibrary(gles2?"libGLESv2.so":"libGLESv1_CM.so", NULL);
|
||||
if (!sys_gl_module)
|
||||
{
|
||||
|
@ -96,7 +100,7 @@ qboolean GLVID_Init (rendererstate_t *info, unsigned char *palette)
|
|||
return false;
|
||||
}
|
||||
|
||||
GLVID_SetPalette (palette);
|
||||
GLVID_SetPalette (palette);
|
||||
GL_Init(GLES_GetSymbol);
|
||||
vid.recalc_refdef = 1;
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue