]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_3dfxsvga.c
added support for .colormap values >= 1024 in QC to mean direct color specification...
[xonotic/darkplaces.git] / vid_3dfxsvga.c
index 727424907c3ee473839f5ec510e381cea6ca4177..a07b8f317888ae6be9ba6b9577a14cd5e7d85d63 100644 (file)
@@ -55,13 +55,6 @@ static int   scr_width, scr_height;
 
 int    VID_options_items = 0;
 
-/*-----------------------------------------------------------------------*/
-
-const char *gl_vendor;
-const char *gl_renderer;
-const char *gl_version;
-const char *gl_extensions;
-
 /*-----------------------------------------------------------------------*/
 void D_BeginDirectRect (int x, int y, qbyte *pbitmap, int width, int height)
 {
@@ -77,6 +70,8 @@ void VID_Shutdown(void)
                return;
 
        fxMesaDestroyContext(fc);
+
+       GL_CloseLibrary();
 }
 
 void signal_handler(int sig)
@@ -235,6 +230,8 @@ void VID_Init(void)
        GLint attribs[32];
        int width = 640, height = 480;
 
+       GL_OpenLibrary();
+
 // set vid parameters
        attribs[0] = FXMESA_DOUBLEBUFFER;
        attribs[1] = FXMESA_ALPHA_SIZE;
@@ -287,6 +284,8 @@ void VID_Init(void)
 
        VID_SetupDithering(); // 3DFX specific
 
+       vid_hidden = false;
+
        Con_SafePrintf ("Video mode %dx%d initialized.\n", width, height);
 }