]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_3dfxsvga.c
now entirely dynamic OpenGL binding
[xonotic/darkplaces.git] / vid_3dfxsvga.c
index 9cbb5819b87118170da37adad348a3d58f99ee99..a07b8f317888ae6be9ba6b9577a14cd5e7d85d63 100644 (file)
@@ -55,13 +55,6 @@ static int   scr_width, scr_height;
 
 int    VID_options_items = 0;
 
 
 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)
 {
 /*-----------------------------------------------------------------------*/
 void D_BeginDirectRect (int x, int y, qbyte *pbitmap, int width, int height)
 {
@@ -77,6 +70,8 @@ void VID_Shutdown(void)
                return;
 
        fxMesaDestroyContext(fc);
                return;
 
        fxMesaDestroyContext(fc);
+
+       GL_CloseLibrary();
 }
 
 void signal_handler(int sig)
 }
 
 void signal_handler(int sig)
@@ -84,7 +79,6 @@ void signal_handler(int sig)
        printf("Received signal %d, exiting...\n", sig);
        Host_Shutdown();
        abort();
        printf("Received signal %d, exiting...\n", sig);
        Host_Shutdown();
        abort();
-       //Sys_Quit();
        exit(0);
 }
 
        exit(0);
 }
 
@@ -95,9 +89,7 @@ void InitSig(void)
        signal(SIGQUIT, signal_handler);
        signal(SIGILL, signal_handler);
        signal(SIGTRAP, signal_handler);
        signal(SIGQUIT, signal_handler);
        signal(SIGILL, signal_handler);
        signal(SIGTRAP, signal_handler);
-//     signal(SIGIOT, signal_handler);
        signal(SIGBUS, signal_handler);
        signal(SIGBUS, signal_handler);
-//     signal(SIGFPE, signal_handler);
        signal(SIGSEGV, signal_handler);
        signal(SIGTERM, signal_handler);
 }
        signal(SIGSEGV, signal_handler);
        signal(SIGTERM, signal_handler);
 }
@@ -238,6 +230,8 @@ void VID_Init(void)
        GLint attribs[32];
        int width = 640, height = 480;
 
        GLint attribs[32];
        int width = 640, height = 480;
 
+       GL_OpenLibrary();
+
 // set vid parameters
        attribs[0] = FXMESA_DOUBLEBUFFER;
        attribs[1] = FXMESA_ALPHA_SIZE;
 // set vid parameters
        attribs[0] = FXMESA_DOUBLEBUFFER;
        attribs[1] = FXMESA_ALPHA_SIZE;
@@ -290,25 +284,17 @@ void VID_Init(void)
 
        VID_SetupDithering(); // 3DFX specific
 
 
        VID_SetupDithering(); // 3DFX specific
 
-       Con_SafePrintf ("Video mode %dx%d initialized.\n", width, height);
+       vid_hidden = false;
 
 
-//     vid.recalc_refdef = 1;                          // force a surface cache flush
+       Con_SafePrintf ("Video mode %dx%d initialized.\n", width, height);
 }
 
 void VID_ExtraOptionDraw(unsigned int options_draw_cursor)
 {
 }
 
 void VID_ExtraOptionDraw(unsigned int options_draw_cursor)
 {
-/* Port specific Options menu entrys */
 }
 
 void VID_ExtraOptionCmd(int option_cursor)
 {
 }
 
 void VID_ExtraOptionCmd(int option_cursor)
 {
-/*
-       switch(option_cursor)
-       {
-       case 12:  // Always start with 12
-       break;
-       }
-*/
 }
 
 void VID_SetCaption (char *text)
 }
 
 void VID_SetCaption (char *text)
@@ -318,3 +304,4 @@ void VID_SetCaption (char *text)
 void VID_HandlePause (qboolean pause)
 {
 }
 void VID_HandlePause (qboolean pause)
 {
 }
+