2007-09-05 18:17:46 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 1999-2005 Id Software, Inc.
|
|
|
|
|
|
|
|
This file is part of Quake III Arena source code.
|
|
|
|
|
|
|
|
Quake III Arena source code is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
Quake III Arena source code is distributed in the hope that it will be
|
|
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Quake III Arena source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
2007-11-02 23:36:23 +00:00
|
|
|
#ifdef USE_LOCAL_HEADERS
|
|
|
|
# include "SDL.h"
|
|
|
|
#else
|
|
|
|
# include <SDL.h>
|
|
|
|
#endif
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2007-12-11 00:19:23 +00:00
|
|
|
#include <math.h>
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2013-02-16 20:58:04 +00:00
|
|
|
#include "../renderercommon/tr_common.h"
|
2007-09-05 18:17:46 +00:00
|
|
|
#include "../sys/sys_local.h"
|
|
|
|
#include "sdl_icon.h"
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
RSERR_OK,
|
|
|
|
|
|
|
|
RSERR_INVALID_FULLSCREEN,
|
|
|
|
RSERR_INVALID_MODE,
|
|
|
|
|
|
|
|
RSERR_UNKNOWN
|
|
|
|
} rserr_t;
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_Window *SDL_window = NULL;
|
2013-09-15 22:54:52 +00:00
|
|
|
static SDL_GLContext SDL_glContext = NULL;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
cvar_t *r_allowSoftwareGL; // Don't abort out if a hardware visual can't be obtained
|
2009-09-14 22:07:34 +00:00
|
|
|
cvar_t *r_allowResize; // make window resizable
|
2009-11-06 15:34:05 +00:00
|
|
|
cvar_t *r_centerWindow;
|
2008-08-09 13:20:00 +00:00
|
|
|
cvar_t *r_sdlDriver;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2007-09-12 18:02:38 +00:00
|
|
|
void (APIENTRYP qglActiveTextureARB) (GLenum texture);
|
|
|
|
void (APIENTRYP qglClientActiveTextureARB) (GLenum texture);
|
|
|
|
void (APIENTRYP qglMultiTexCoord2fARB) (GLenum target, GLfloat s, GLfloat t);
|
|
|
|
|
|
|
|
void (APIENTRYP qglLockArraysEXT) (GLint first, GLsizei count);
|
|
|
|
void (APIENTRYP qglUnlockArraysEXT) (void);
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_Shutdown
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void GLimp_Shutdown( void )
|
|
|
|
{
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.IN_Shutdown();
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
SDL_QuitSubSystem( SDL_INIT_VIDEO );
|
|
|
|
}
|
|
|
|
|
2011-02-10 19:21:13 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_Minimize
|
|
|
|
|
|
|
|
Minimize the game so that user is back at the desktop
|
|
|
|
===============
|
|
|
|
*/
|
2013-01-17 13:31:30 +00:00
|
|
|
void GLimp_Minimize( void )
|
2011-02-10 19:21:13 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_MinimizeWindow( SDL_window );
|
2011-02-10 19:21:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_LogComment
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void GLimp_LogComment( char *comment )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-12-11 00:19:23 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_CompareModes
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
static int GLimp_CompareModes( const void *a, const void *b )
|
2007-12-08 10:08:05 +00:00
|
|
|
{
|
2007-12-11 00:19:23 +00:00
|
|
|
const float ASPECT_EPSILON = 0.001f;
|
2013-09-15 22:54:52 +00:00
|
|
|
SDL_Rect *modeA = (SDL_Rect *)a;
|
|
|
|
SDL_Rect *modeB = (SDL_Rect *)b;
|
2009-11-05 20:29:26 +00:00
|
|
|
float aspectA = (float)modeA->w / (float)modeA->h;
|
|
|
|
float aspectB = (float)modeB->w / (float)modeB->h;
|
|
|
|
int areaA = modeA->w * modeA->h;
|
|
|
|
int areaB = modeB->w * modeB->h;
|
|
|
|
float aspectDiffA = fabs( aspectA - displayAspect );
|
|
|
|
float aspectDiffB = fabs( aspectB - displayAspect );
|
2007-12-11 00:19:23 +00:00
|
|
|
float aspectDiffsDiff = aspectDiffA - aspectDiffB;
|
|
|
|
|
|
|
|
if( aspectDiffsDiff > ASPECT_EPSILON )
|
|
|
|
return 1;
|
|
|
|
else if( aspectDiffsDiff < -ASPECT_EPSILON )
|
|
|
|
return -1;
|
|
|
|
else
|
2009-11-05 20:29:26 +00:00
|
|
|
return areaA - areaB;
|
2007-12-11 00:19:23 +00:00
|
|
|
}
|
|
|
|
|
2009-11-05 20:29:26 +00:00
|
|
|
|
2007-12-11 00:19:23 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_DetectAvailableModes
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
static void GLimp_DetectAvailableModes(void)
|
|
|
|
{
|
2014-09-21 00:16:08 +00:00
|
|
|
int i, j;
|
2013-01-17 13:31:30 +00:00
|
|
|
char buf[ MAX_STRING_CHARS ] = { 0 };
|
2015-06-28 17:01:03 +00:00
|
|
|
int numSDLModes;
|
2014-10-01 08:35:49 +00:00
|
|
|
SDL_Rect *modes;
|
2013-01-17 13:31:30 +00:00
|
|
|
int numModes = 0;
|
2007-12-11 00:19:23 +00:00
|
|
|
|
2015-06-28 21:29:10 +00:00
|
|
|
SDL_DisplayMode windowMode;
|
2013-01-17 13:31:30 +00:00
|
|
|
int display = SDL_GetWindowDisplayIndex( SDL_window );
|
2015-07-26 11:03:47 +00:00
|
|
|
if( display < 0 )
|
|
|
|
{
|
2015-07-26 13:41:41 +00:00
|
|
|
ri.Printf( PRINT_WARNING, "Couldn't get window display index, no resolutions detected: %s\n", SDL_GetError() );
|
2015-07-26 11:03:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-06-28 17:01:03 +00:00
|
|
|
numSDLModes = SDL_GetNumDisplayModes( display );
|
2007-12-11 00:19:23 +00:00
|
|
|
|
2015-06-28 17:01:03 +00:00
|
|
|
if( SDL_GetWindowDisplayMode( SDL_window, &windowMode ) < 0 || numSDLModes <= 0 )
|
2007-12-11 00:19:23 +00:00
|
|
|
{
|
2015-07-26 13:41:41 +00:00
|
|
|
ri.Printf( PRINT_WARNING, "Couldn't get window display mode, no resolutions detected: %s\n", SDL_GetError() );
|
2007-12-11 00:19:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-28 17:01:03 +00:00
|
|
|
modes = SDL_calloc( (size_t)numSDLModes, sizeof( SDL_Rect ) );
|
2014-10-01 08:35:49 +00:00
|
|
|
if ( !modes )
|
|
|
|
{
|
2015-06-12 17:59:25 +00:00
|
|
|
ri.Error( ERR_FATAL, "Out of memory" );
|
2014-10-01 08:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for( i = 0; i < numSDLModes; i++ )
|
2007-12-11 00:19:23 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_DisplayMode mode;
|
|
|
|
|
|
|
|
if( SDL_GetDisplayMode( display, i, &mode ) < 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !mode.w || !mode.h )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "Display supports any resolution\n" );
|
2014-10-01 08:35:49 +00:00
|
|
|
SDL_free( modes );
|
2013-01-17 13:31:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-12-11 00:19:23 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
if( windowMode.format != mode.format )
|
|
|
|
continue;
|
|
|
|
|
2014-09-21 00:16:08 +00:00
|
|
|
// SDL can give the same resolution with different refresh rates.
|
|
|
|
// Only list resolution once.
|
|
|
|
for( j = 0; j < numModes; j++ )
|
|
|
|
{
|
|
|
|
if( mode.w == modes[ j ].w && mode.h == modes[ j ].h )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( j != numModes )
|
|
|
|
continue;
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
modes[ numModes ].w = mode.w;
|
|
|
|
modes[ numModes ].h = mode.h;
|
|
|
|
numModes++;
|
|
|
|
}
|
2007-12-11 00:19:23 +00:00
|
|
|
|
2009-11-05 20:29:26 +00:00
|
|
|
if( numModes > 1 )
|
2013-01-17 13:31:30 +00:00
|
|
|
qsort( modes, numModes, sizeof( SDL_Rect ), GLimp_CompareModes );
|
2007-12-11 00:19:23 +00:00
|
|
|
|
|
|
|
for( i = 0; i < numModes; i++ )
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
const char *newModeString = va( "%ux%u ", modes[ i ].w, modes[ i ].h );
|
2007-12-11 00:19:23 +00:00
|
|
|
|
|
|
|
if( strlen( newModeString ) < (int)sizeof( buf ) - strlen( buf ) )
|
|
|
|
Q_strcat( buf, sizeof( buf ), newModeString );
|
|
|
|
else
|
2014-09-21 00:16:08 +00:00
|
|
|
ri.Printf( PRINT_WARNING, "Skipping mode %ux%u, buffer too small\n", modes[ i ].w, modes[ i ].h );
|
2007-12-11 00:19:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( *buf )
|
|
|
|
{
|
|
|
|
buf[ strlen( buf ) - 1 ] = 0;
|
|
|
|
ri.Printf( PRINT_ALL, "Available modes: '%s'\n", buf );
|
|
|
|
ri.Cvar_Set( "r_availableModes", buf );
|
|
|
|
}
|
2014-10-01 08:35:49 +00:00
|
|
|
SDL_free( modes );
|
2007-12-08 10:08:05 +00:00
|
|
|
}
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_SetMode
|
|
|
|
===============
|
|
|
|
*/
|
2009-11-03 20:29:43 +00:00
|
|
|
static int GLimp_SetMode(int mode, qboolean fullscreen, qboolean noborder)
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
const char *glstring;
|
|
|
|
int perChannelColorBits;
|
|
|
|
int colorBits, depthBits, stencilBits;
|
2009-06-13 22:00:28 +00:00
|
|
|
int samples;
|
2007-09-05 18:17:46 +00:00
|
|
|
int i = 0;
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_Surface *icon = NULL;
|
|
|
|
Uint32 flags = SDL_WINDOW_SHOWN | SDL_WINDOW_OPENGL;
|
|
|
|
SDL_DisplayMode desktopMode;
|
|
|
|
int display = 0;
|
2013-08-29 18:15:35 +00:00
|
|
|
int x = SDL_WINDOWPOS_UNDEFINED, y = SDL_WINDOWPOS_UNDEFINED;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
ri.Printf( PRINT_ALL, "Initializing OpenGL display\n");
|
|
|
|
|
2009-09-14 22:07:34 +00:00
|
|
|
if ( r_allowResize->integer )
|
2013-01-17 13:31:30 +00:00
|
|
|
flags |= SDL_WINDOW_RESIZABLE;
|
|
|
|
|
2013-10-19 06:54:58 +00:00
|
|
|
#ifdef USE_ICON
|
2013-01-17 13:31:30 +00:00
|
|
|
icon = SDL_CreateRGBSurfaceFrom(
|
|
|
|
(void *)CLIENT_WINDOW_ICON.pixel_data,
|
|
|
|
CLIENT_WINDOW_ICON.width,
|
|
|
|
CLIENT_WINDOW_ICON.height,
|
|
|
|
CLIENT_WINDOW_ICON.bytes_per_pixel * 8,
|
|
|
|
CLIENT_WINDOW_ICON.bytes_per_pixel * CLIENT_WINDOW_ICON.width,
|
|
|
|
#ifdef Q3_LITTLE_ENDIAN
|
|
|
|
0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000
|
|
|
|
#else
|
|
|
|
0xFF000000, 0x00FF0000, 0x0000FF00, 0x000000FF
|
|
|
|
#endif
|
|
|
|
);
|
2013-10-19 06:54:58 +00:00
|
|
|
#endif
|
2008-08-13 19:39:38 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
// If a window exists, note its display index
|
|
|
|
if( SDL_window != NULL )
|
2015-07-26 17:46:07 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
display = SDL_GetWindowDisplayIndex( SDL_window );
|
2015-07-26 17:46:07 +00:00
|
|
|
if( display < 0 )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_DEVELOPER, "SDL_GetWindowDisplayIndex() failed: %s\n", SDL_GetError() );
|
|
|
|
}
|
|
|
|
}
|
2008-08-13 19:39:38 +00:00
|
|
|
|
2015-07-26 17:46:07 +00:00
|
|
|
if( display >= 0 && SDL_GetDesktopDisplayMode( display, &desktopMode ) == 0 )
|
2013-01-17 13:31:30 +00:00
|
|
|
{
|
|
|
|
displayAspect = (float)desktopMode.w / (float)desktopMode.h;
|
2008-08-13 19:39:38 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_ALL, "Display aspect: %.3f\n", displayAspect );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Com_Memset( &desktopMode, 0, sizeof( SDL_DisplayMode ) );
|
2009-09-28 11:57:16 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_ALL,
|
|
|
|
"Cannot determine display aspect, assuming 1.333\n" );
|
2007-12-11 00:19:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
ri.Printf (PRINT_ALL, "...setting mode %d:", mode );
|
|
|
|
|
2012-08-27 14:52:41 +00:00
|
|
|
if (mode == -2)
|
|
|
|
{
|
|
|
|
// use desktop video resolution
|
2013-01-17 13:31:30 +00:00
|
|
|
if( desktopMode.h > 0 )
|
2012-08-27 14:52:41 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
glConfig.vidWidth = desktopMode.w;
|
|
|
|
glConfig.vidHeight = desktopMode.h;
|
2012-08-27 14:52:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-27 15:38:55 +00:00
|
|
|
glConfig.vidWidth = 640;
|
|
|
|
glConfig.vidHeight = 480;
|
2012-08-27 14:52:41 +00:00
|
|
|
ri.Printf( PRINT_ALL,
|
|
|
|
"Cannot determine display resolution, assuming 640x480\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
glConfig.windowAspect = (float)glConfig.vidWidth / (float)glConfig.vidHeight;
|
|
|
|
}
|
|
|
|
else if ( !R_GetModeInfo( &glConfig.vidWidth, &glConfig.vidHeight, &glConfig.windowAspect, mode ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, " invalid mode\n" );
|
|
|
|
return RSERR_INVALID_MODE;
|
|
|
|
}
|
|
|
|
ri.Printf( PRINT_ALL, " %d %d\n", glConfig.vidWidth, glConfig.vidHeight);
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
// Center window
|
|
|
|
if( r_centerWindow->integer && !fullscreen )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
x = ( desktopMode.w / 2 ) - ( glConfig.vidWidth / 2 );
|
|
|
|
y = ( desktopMode.h / 2 ) - ( glConfig.vidHeight / 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy existing state if it exists
|
|
|
|
if( SDL_glContext != NULL )
|
|
|
|
{
|
|
|
|
SDL_GL_DeleteContext( SDL_glContext );
|
|
|
|
SDL_glContext = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( SDL_window != NULL )
|
|
|
|
{
|
|
|
|
SDL_GetWindowPosition( SDL_window, &x, &y );
|
|
|
|
ri.Printf( PRINT_DEVELOPER, "Existing window at %dx%d before being destroyed\n", x, y );
|
|
|
|
SDL_DestroyWindow( SDL_window );
|
|
|
|
SDL_window = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fullscreen )
|
|
|
|
{
|
|
|
|
flags |= SDL_WINDOW_FULLSCREEN;
|
2007-09-05 18:17:46 +00:00
|
|
|
glConfig.isFullscreen = qtrue;
|
|
|
|
}
|
|
|
|
else
|
2009-11-03 20:29:43 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
if( noborder )
|
|
|
|
flags |= SDL_WINDOW_BORDERLESS;
|
2009-11-03 20:29:43 +00:00
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
glConfig.isFullscreen = qfalse;
|
2009-11-03 20:29:43 +00:00
|
|
|
}
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
colorBits = r_colorbits->value;
|
|
|
|
if ((!colorBits) || (colorBits >= 32))
|
|
|
|
colorBits = 24;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
if (!r_depthbits->value)
|
2013-01-17 13:31:30 +00:00
|
|
|
depthBits = 24;
|
2007-09-05 18:17:46 +00:00
|
|
|
else
|
2013-01-17 13:31:30 +00:00
|
|
|
depthBits = r_depthbits->value;
|
|
|
|
|
|
|
|
stencilBits = r_stencilbits->value;
|
2009-06-13 22:00:28 +00:00
|
|
|
samples = r_ext_multisample->value;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
int testColorBits, testDepthBits, testStencilBits;
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
// 0 - default
|
2013-01-17 13:31:30 +00:00
|
|
|
// 1 - minus colorBits
|
|
|
|
// 2 - minus depthBits
|
2007-09-05 18:17:46 +00:00
|
|
|
// 3 - minus stencil
|
|
|
|
if ((i % 4) == 0 && i)
|
|
|
|
{
|
|
|
|
// one pass, reduce
|
|
|
|
switch (i / 4)
|
|
|
|
{
|
|
|
|
case 2 :
|
2013-01-17 13:31:30 +00:00
|
|
|
if (colorBits == 24)
|
|
|
|
colorBits = 16;
|
2007-09-05 18:17:46 +00:00
|
|
|
break;
|
|
|
|
case 1 :
|
2013-01-17 13:31:30 +00:00
|
|
|
if (depthBits == 24)
|
|
|
|
depthBits = 16;
|
|
|
|
else if (depthBits == 16)
|
|
|
|
depthBits = 8;
|
2007-09-05 18:17:46 +00:00
|
|
|
case 3 :
|
2013-01-17 13:31:30 +00:00
|
|
|
if (stencilBits == 24)
|
|
|
|
stencilBits = 16;
|
|
|
|
else if (stencilBits == 16)
|
|
|
|
stencilBits = 8;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
testColorBits = colorBits;
|
|
|
|
testDepthBits = depthBits;
|
|
|
|
testStencilBits = stencilBits;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
if ((i % 4) == 3)
|
2013-01-17 13:31:30 +00:00
|
|
|
{ // reduce colorBits
|
|
|
|
if (testColorBits == 24)
|
|
|
|
testColorBits = 16;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((i % 4) == 2)
|
2013-01-17 13:31:30 +00:00
|
|
|
{ // reduce depthBits
|
|
|
|
if (testDepthBits == 24)
|
|
|
|
testDepthBits = 16;
|
|
|
|
else if (testDepthBits == 16)
|
|
|
|
testDepthBits = 8;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((i % 4) == 1)
|
2013-01-17 13:31:30 +00:00
|
|
|
{ // reduce stencilBits
|
|
|
|
if (testStencilBits == 24)
|
|
|
|
testStencilBits = 16;
|
|
|
|
else if (testStencilBits == 16)
|
|
|
|
testStencilBits = 8;
|
2007-09-05 18:17:46 +00:00
|
|
|
else
|
2013-01-17 13:31:30 +00:00
|
|
|
testStencilBits = 0;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
if (testColorBits == 24)
|
|
|
|
perChannelColorBits = 8;
|
|
|
|
else
|
|
|
|
perChannelColorBits = 4;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2009-09-15 01:01:07 +00:00
|
|
|
#ifdef __sgi /* Fix for SGIs grabbing too many bits of color */
|
2013-01-17 13:31:30 +00:00
|
|
|
if (perChannelColorBits == 4)
|
|
|
|
perChannelColorBits = 0; /* Use minimum size for 16-bit color */
|
2009-09-15 01:01:07 +00:00
|
|
|
|
|
|
|
/* Need alpha or else SGIs choose 36+ bit RGB mode */
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_ALPHA_SIZE, 1);
|
|
|
|
#endif
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_GL_SetAttribute( SDL_GL_RED_SIZE, perChannelColorBits );
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_GREEN_SIZE, perChannelColorBits );
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_BLUE_SIZE, perChannelColorBits );
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_DEPTH_SIZE, testDepthBits );
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_STENCIL_SIZE, testStencilBits );
|
2008-04-27 19:07:57 +00:00
|
|
|
|
2009-06-13 22:00:28 +00:00
|
|
|
SDL_GL_SetAttribute( SDL_GL_MULTISAMPLEBUFFERS, samples ? 1 : 0 );
|
|
|
|
SDL_GL_SetAttribute( SDL_GL_MULTISAMPLESAMPLES, samples );
|
|
|
|
|
2008-04-27 19:07:57 +00:00
|
|
|
if(r_stereoEnabled->integer)
|
|
|
|
{
|
|
|
|
glConfig.stereoEnabled = qtrue;
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_STEREO, 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glConfig.stereoEnabled = qfalse;
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_STEREO, 0);
|
|
|
|
}
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 );
|
|
|
|
|
2014-03-17 17:04:59 +00:00
|
|
|
#if 0 // if multisampling is enabled on X11, this causes create window to fail.
|
2007-09-05 18:17:46 +00:00
|
|
|
// If not allowing software GL, demand accelerated
|
|
|
|
if( !r_allowSoftwareGL->integer )
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_GL_SetAttribute( SDL_GL_ACCELERATED_VISUAL, 1 );
|
2014-03-17 17:04:59 +00:00
|
|
|
#endif
|
2013-01-17 13:31:30 +00:00
|
|
|
|
|
|
|
if( ( SDL_window = SDL_CreateWindow( CLIENT_WINDOW_TITLE, x, y,
|
2015-07-26 11:54:29 +00:00
|
|
|
glConfig.vidWidth, glConfig.vidHeight, flags ) ) == NULL )
|
2013-01-17 13:31:30 +00:00
|
|
|
{
|
|
|
|
ri.Printf( PRINT_DEVELOPER, "SDL_CreateWindow failed: %s\n", SDL_GetError( ) );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fullscreen )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_DisplayMode mode;
|
|
|
|
|
|
|
|
switch( testColorBits )
|
|
|
|
{
|
|
|
|
case 16: mode.format = SDL_PIXELFORMAT_RGB565; break;
|
|
|
|
case 24: mode.format = SDL_PIXELFORMAT_RGB24; break;
|
|
|
|
default: ri.Printf( PRINT_DEVELOPER, "testColorBits is %d, can't fullscreen\n", testColorBits ); continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode.w = glConfig.vidWidth;
|
|
|
|
mode.h = glConfig.vidHeight;
|
|
|
|
mode.refresh_rate = glConfig.displayFrequency = ri.Cvar_VariableIntegerValue( "r_displayRefresh" );
|
|
|
|
mode.driverdata = NULL;
|
|
|
|
|
|
|
|
if( SDL_SetWindowDisplayMode( SDL_window, &mode ) < 0 )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_DEVELOPER, "SDL_SetWindowDisplayMode failed: %s\n", SDL_GetError( ) );
|
|
|
|
continue;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_SetWindowIcon( SDL_window, icon );
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
if( ( SDL_glContext = SDL_GL_CreateContext( SDL_window ) ) == NULL )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_DEVELOPER, "SDL_GL_CreateContext failed: %s\n", SDL_GetError( ) );
|
|
|
|
continue;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2014-11-08 03:34:22 +00:00
|
|
|
qglClearColor( 0, 0, 0, 1 );
|
|
|
|
qglClear( GL_COLOR_BUFFER_BIT );
|
|
|
|
SDL_GL_SwapWindow( SDL_window );
|
|
|
|
|
2015-07-26 18:23:48 +00:00
|
|
|
if( SDL_GL_SetSwapInterval( r_swapInterval->integer ) == -1 )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_DEVELOPER, "SDL_GL_SetSwapInterval failed: %s\n", SDL_GetError( ) );
|
|
|
|
}
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
glConfig.colorBits = testColorBits;
|
|
|
|
glConfig.depthBits = testDepthBits;
|
|
|
|
glConfig.stencilBits = testStencilBits;
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_ALL, "Using %d color bits, %d depth, %d stencil display.\n",
|
|
|
|
glConfig.colorBits, glConfig.depthBits, glConfig.stencilBits );
|
2007-09-05 18:17:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_FreeSurface( icon );
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2014-03-15 22:53:42 +00:00
|
|
|
if( !SDL_window )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "Couldn't get a visual\n" );
|
|
|
|
return RSERR_INVALID_MODE;
|
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
GLimp_DetectAvailableModes();
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
glstring = (char *) qglGetString (GL_RENDERER);
|
|
|
|
ri.Printf( PRINT_ALL, "GL_RENDERER: %s\n", glstring );
|
|
|
|
|
|
|
|
return RSERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_StartDriverAndSetMode
|
|
|
|
===============
|
|
|
|
*/
|
2009-11-03 20:29:43 +00:00
|
|
|
static qboolean GLimp_StartDriverAndSetMode(int mode, qboolean fullscreen, qboolean noborder)
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
rserr_t err;
|
|
|
|
|
|
|
|
if (!SDL_WasInit(SDL_INIT_VIDEO))
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
const char *driverName;
|
2008-08-03 21:37:51 +00:00
|
|
|
|
2015-07-24 20:56:00 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) != 0)
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_ALL, "SDL_Init( SDL_INIT_VIDEO ) FAILED (%s)\n", SDL_GetError());
|
2007-09-05 18:17:46 +00:00
|
|
|
return qfalse;
|
|
|
|
}
|
2008-08-03 21:37:51 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
driverName = SDL_GetCurrentVideoDriver( );
|
2008-08-03 21:37:51 +00:00
|
|
|
ri.Printf( PRINT_ALL, "SDL using driver \"%s\"\n", driverName );
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.Cvar_Set( "r_sdlDriver", driverName );
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2011-08-01 01:19:55 +00:00
|
|
|
if (fullscreen && ri.Cvar_VariableIntegerValue( "in_nograb" ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "Fullscreen not allowed with in_nograb 1\n");
|
|
|
|
ri.Cvar_Set( "r_fullscreen", "0" );
|
|
|
|
r_fullscreen->modified = qfalse;
|
|
|
|
fullscreen = qfalse;
|
|
|
|
}
|
2009-11-03 20:29:43 +00:00
|
|
|
|
|
|
|
err = GLimp_SetMode(mode, fullscreen, noborder);
|
2007-09-05 18:17:46 +00:00
|
|
|
|
|
|
|
switch ( err )
|
|
|
|
{
|
|
|
|
case RSERR_INVALID_FULLSCREEN:
|
|
|
|
ri.Printf( PRINT_ALL, "...WARNING: fullscreen unavailable in this mode\n" );
|
|
|
|
return qfalse;
|
|
|
|
case RSERR_INVALID_MODE:
|
|
|
|
ri.Printf( PRINT_ALL, "...WARNING: could not set the given mode (%d)\n", mode );
|
|
|
|
return qfalse;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return qtrue;
|
|
|
|
}
|
2008-06-13 02:28:51 +00:00
|
|
|
|
|
|
|
static qboolean GLimp_HaveExtension(const char *ext)
|
|
|
|
{
|
|
|
|
const char *ptr = Q_stristr( glConfig.extensions_string, ext );
|
|
|
|
if (ptr == NULL)
|
|
|
|
return qfalse;
|
|
|
|
ptr += strlen(ext);
|
|
|
|
return ((*ptr == ' ') || (*ptr == '\0')); // verify it's complete string.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_InitExtensions
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
static void GLimp_InitExtensions( void )
|
|
|
|
{
|
|
|
|
if ( !r_allowExtensions->integer )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "* IGNORING OPENGL EXTENSIONS *\n" );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ri.Printf( PRINT_ALL, "Initializing OpenGL extensions\n" );
|
|
|
|
|
2008-06-13 02:28:51 +00:00
|
|
|
glConfig.textureCompression = TC_NONE;
|
|
|
|
|
|
|
|
// GL_EXT_texture_compression_s3tc
|
|
|
|
if ( GLimp_HaveExtension( "GL_ARB_texture_compression" ) &&
|
|
|
|
GLimp_HaveExtension( "GL_EXT_texture_compression_s3tc" ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
if ( r_ext_compressed_textures->value )
|
|
|
|
{
|
2008-06-13 02:28:51 +00:00
|
|
|
glConfig.textureCompression = TC_S3TC_ARB;
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_EXT_texture_compression_s3tc\n" );
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-06-13 02:28:51 +00:00
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_EXT_texture_compression_s3tc\n" );
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-06-13 02:28:51 +00:00
|
|
|
ri.Printf( PRINT_ALL, "...GL_EXT_texture_compression_s3tc not found\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// GL_S3_s3tc ... legacy extension before GL_EXT_texture_compression_s3tc.
|
|
|
|
if (glConfig.textureCompression == TC_NONE)
|
|
|
|
{
|
|
|
|
if ( GLimp_HaveExtension( "GL_S3_s3tc" ) )
|
|
|
|
{
|
|
|
|
if ( r_ext_compressed_textures->value )
|
|
|
|
{
|
|
|
|
glConfig.textureCompression = TC_S3TC;
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_S3_s3tc\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_S3_s3tc\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_S3_s3tc not found\n" );
|
|
|
|
}
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2008-06-13 02:28:51 +00:00
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
// GL_EXT_texture_env_add
|
|
|
|
glConfig.textureEnvAddAvailable = qfalse;
|
2008-06-13 02:28:51 +00:00
|
|
|
if ( GLimp_HaveExtension( "EXT_texture_env_add" ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
if ( r_ext_texture_env_add->integer )
|
|
|
|
{
|
|
|
|
glConfig.textureEnvAddAvailable = qtrue;
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_EXT_texture_env_add\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glConfig.textureEnvAddAvailable = qfalse;
|
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_EXT_texture_env_add\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_EXT_texture_env_add not found\n" );
|
|
|
|
}
|
|
|
|
|
2007-09-12 18:02:38 +00:00
|
|
|
// GL_ARB_multitexture
|
|
|
|
qglMultiTexCoord2fARB = NULL;
|
|
|
|
qglActiveTextureARB = NULL;
|
|
|
|
qglClientActiveTextureARB = NULL;
|
2008-06-13 02:28:51 +00:00
|
|
|
if ( GLimp_HaveExtension( "GL_ARB_multitexture" ) )
|
2007-09-12 18:02:38 +00:00
|
|
|
{
|
|
|
|
if ( r_ext_multitexture->value )
|
|
|
|
{
|
2007-11-25 23:41:01 +00:00
|
|
|
qglMultiTexCoord2fARB = SDL_GL_GetProcAddress( "glMultiTexCoord2fARB" );
|
|
|
|
qglActiveTextureARB = SDL_GL_GetProcAddress( "glActiveTextureARB" );
|
|
|
|
qglClientActiveTextureARB = SDL_GL_GetProcAddress( "glClientActiveTextureARB" );
|
2007-09-12 18:02:38 +00:00
|
|
|
|
|
|
|
if ( qglActiveTextureARB )
|
|
|
|
{
|
|
|
|
GLint glint = 0;
|
|
|
|
qglGetIntegerv( GL_MAX_TEXTURE_UNITS_ARB, &glint );
|
|
|
|
glConfig.numTextureUnits = (int) glint;
|
|
|
|
if ( glConfig.numTextureUnits > 1 )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_ARB_multitexture\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qglMultiTexCoord2fARB = NULL;
|
|
|
|
qglActiveTextureARB = NULL;
|
|
|
|
qglClientActiveTextureARB = NULL;
|
|
|
|
ri.Printf( PRINT_ALL, "...not using GL_ARB_multitexture, < 2 texture units\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_ARB_multitexture\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_ARB_multitexture not found\n" );
|
|
|
|
}
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
// GL_EXT_compiled_vertex_array
|
2008-06-13 02:28:51 +00:00
|
|
|
if ( GLimp_HaveExtension( "GL_EXT_compiled_vertex_array" ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
if ( r_ext_compiled_vertex_array->value )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_EXT_compiled_vertex_array\n" );
|
|
|
|
qglLockArraysEXT = ( void ( APIENTRY * )( GLint, GLint ) ) SDL_GL_GetProcAddress( "glLockArraysEXT" );
|
|
|
|
qglUnlockArraysEXT = ( void ( APIENTRY * )( void ) ) SDL_GL_GetProcAddress( "glUnlockArraysEXT" );
|
|
|
|
if (!qglLockArraysEXT || !qglUnlockArraysEXT)
|
|
|
|
{
|
|
|
|
ri.Error (ERR_FATAL, "bad getprocaddress");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_EXT_compiled_vertex_array\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_EXT_compiled_vertex_array not found\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
textureFilterAnisotropic = qfalse;
|
2008-06-13 02:28:51 +00:00
|
|
|
if ( GLimp_HaveExtension( "GL_EXT_texture_filter_anisotropic" ) )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
|
|
|
if ( r_ext_texture_filter_anisotropic->integer ) {
|
|
|
|
qglGetIntegerv( GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, (GLint *)&maxAnisotropy );
|
|
|
|
if ( maxAnisotropy <= 0 ) {
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_EXT_texture_filter_anisotropic not properly supported!\n" );
|
|
|
|
maxAnisotropy = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...using GL_EXT_texture_filter_anisotropic (max: %i)\n", maxAnisotropy );
|
|
|
|
textureFilterAnisotropic = qtrue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...ignoring GL_EXT_texture_filter_anisotropic\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "...GL_EXT_texture_filter_anisotropic not found\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define R_MODE_FALLBACK 3 // 640 * 480
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_Init
|
|
|
|
|
|
|
|
This routine is responsible for initializing the OS specific portions
|
|
|
|
of OpenGL
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void GLimp_Init( void )
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.Printf( PRINT_DEVELOPER, "Glimp_Init( )\n" );
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
r_allowSoftwareGL = ri.Cvar_Get( "r_allowSoftwareGL", "0", CVAR_LATCH );
|
2008-08-09 13:20:00 +00:00
|
|
|
r_sdlDriver = ri.Cvar_Get( "r_sdlDriver", "", CVAR_ROM );
|
2013-12-07 05:42:23 +00:00
|
|
|
r_allowResize = ri.Cvar_Get( "r_allowResize", "0", CVAR_ARCHIVE | CVAR_LATCH );
|
|
|
|
r_centerWindow = ri.Cvar_Get( "r_centerWindow", "0", CVAR_ARCHIVE | CVAR_LATCH );
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2011-08-01 01:19:55 +00:00
|
|
|
if( ri.Cvar_VariableIntegerValue( "com_abnormalExit" ) )
|
2010-02-15 16:20:33 +00:00
|
|
|
{
|
|
|
|
ri.Cvar_Set( "r_mode", va( "%d", R_MODE_FALLBACK ) );
|
|
|
|
ri.Cvar_Set( "r_fullscreen", "0" );
|
|
|
|
ri.Cvar_Set( "r_centerWindow", "0" );
|
|
|
|
ri.Cvar_Set( "com_abnormalExit", "0" );
|
|
|
|
}
|
|
|
|
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.Sys_GLimpInit( );
|
2008-08-08 21:35:33 +00:00
|
|
|
|
2009-09-14 12:34:31 +00:00
|
|
|
// Create the window and set up the context
|
2009-11-03 20:29:43 +00:00
|
|
|
if(GLimp_StartDriverAndSetMode(r_mode->integer, r_fullscreen->integer, r_noborder->integer))
|
2009-09-14 12:34:31 +00:00
|
|
|
goto success;
|
|
|
|
|
|
|
|
// Try again, this time in a platform specific "safe mode"
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.Sys_GLimpSafeInit( );
|
2009-09-14 12:34:31 +00:00
|
|
|
|
2009-11-03 20:29:43 +00:00
|
|
|
if(GLimp_StartDriverAndSetMode(r_mode->integer, r_fullscreen->integer, qfalse))
|
2009-09-14 12:34:31 +00:00
|
|
|
goto success;
|
|
|
|
|
|
|
|
// Finally, try the default screen resolution
|
|
|
|
if( r_mode->integer != R_MODE_FALLBACK )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2009-09-14 12:34:31 +00:00
|
|
|
ri.Printf( PRINT_ALL, "Setting r_mode %d failed, falling back on r_mode %d\n",
|
|
|
|
r_mode->integer, R_MODE_FALLBACK );
|
|
|
|
|
2010-02-15 16:20:33 +00:00
|
|
|
if(GLimp_StartDriverAndSetMode(R_MODE_FALLBACK, qfalse, qfalse))
|
2009-09-14 12:34:31 +00:00
|
|
|
goto success;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 12:34:31 +00:00
|
|
|
// Nothing worked, give up
|
2011-05-14 14:32:43 +00:00
|
|
|
ri.Error( ERR_FATAL, "GLimp_Init() - could not load OpenGL subsystem" );
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2009-09-14 12:34:31 +00:00
|
|
|
success:
|
2013-01-18 21:53:37 +00:00
|
|
|
// These values force the UI to disable driver selection
|
2007-09-05 18:17:46 +00:00
|
|
|
glConfig.driverType = GLDRV_ICD;
|
|
|
|
glConfig.hardwareType = GLHW_GENERIC;
|
2013-01-17 13:31:30 +00:00
|
|
|
|
2013-01-18 21:53:37 +00:00
|
|
|
// Only using SDL_SetWindowBrightness to determine if hardware gamma is supported
|
2013-01-19 21:39:35 +00:00
|
|
|
glConfig.deviceSupportsGamma = !r_ignorehwgamma->integer &&
|
|
|
|
SDL_SetWindowBrightness( SDL_window, 1.0f ) >= 0;
|
2012-07-01 17:01:30 +00:00
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
// get our config strings
|
|
|
|
Q_strncpyz( glConfig.vendor_string, (char *) qglGetString (GL_VENDOR), sizeof( glConfig.vendor_string ) );
|
|
|
|
Q_strncpyz( glConfig.renderer_string, (char *) qglGetString (GL_RENDERER), sizeof( glConfig.renderer_string ) );
|
|
|
|
if (*glConfig.renderer_string && glConfig.renderer_string[strlen(glConfig.renderer_string) - 1] == '\n')
|
|
|
|
glConfig.renderer_string[strlen(glConfig.renderer_string) - 1] = 0;
|
|
|
|
Q_strncpyz( glConfig.version_string, (char *) qglGetString (GL_VERSION), sizeof( glConfig.version_string ) );
|
|
|
|
Q_strncpyz( glConfig.extensions_string, (char *) qglGetString (GL_EXTENSIONS), sizeof( glConfig.extensions_string ) );
|
|
|
|
|
|
|
|
// initialize extensions
|
|
|
|
GLimp_InitExtensions( );
|
|
|
|
|
2007-12-08 10:08:05 +00:00
|
|
|
ri.Cvar_Get( "r_availableModes", "", CVAR_ROM );
|
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
// This depends on SDL_INIT_VIDEO, hence having it here
|
2013-01-17 13:31:30 +00:00
|
|
|
ri.IN_Init( SDL_window );
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
GLimp_EndFrame
|
|
|
|
|
|
|
|
Responsible for doing a swapbuffers
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void GLimp_EndFrame( void )
|
|
|
|
{
|
|
|
|
// don't flip if drawing to front buffer
|
|
|
|
if ( Q_stricmp( r_drawBuffer->string, "GL_FRONT" ) != 0 )
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
SDL_GL_SwapWindow( SDL_window );
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( r_fullscreen->modified )
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
int fullscreen;
|
|
|
|
qboolean needToToggle;
|
2007-09-05 18:17:46 +00:00
|
|
|
qboolean sdlToggled = qfalse;
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
// Find out the current state
|
|
|
|
fullscreen = !!( SDL_GetWindowFlags( SDL_window ) & SDL_WINDOW_FULLSCREEN );
|
2008-08-22 22:16:37 +00:00
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
if( r_fullscreen->integer && ri.Cvar_VariableIntegerValue( "in_nograb" ) )
|
|
|
|
{
|
|
|
|
ri.Printf( PRINT_ALL, "Fullscreen not allowed with in_nograb 1\n");
|
|
|
|
ri.Cvar_Set( "r_fullscreen", "0" );
|
|
|
|
r_fullscreen->modified = qfalse;
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
|
2013-01-17 13:31:30 +00:00
|
|
|
// Is the state we want different from the current state?
|
|
|
|
needToToggle = !!r_fullscreen->integer != fullscreen;
|
|
|
|
|
2008-08-22 22:16:37 +00:00
|
|
|
if( needToToggle )
|
|
|
|
{
|
2013-01-17 13:31:30 +00:00
|
|
|
sdlToggled = SDL_SetWindowFullscreen( SDL_window, r_fullscreen->integer ) >= 0;
|
|
|
|
|
2008-08-22 22:16:37 +00:00
|
|
|
// SDL_WM_ToggleFullScreen didn't work, so do it the slow way
|
|
|
|
if( !sdlToggled )
|
2013-08-03 22:14:56 +00:00
|
|
|
ri.Cmd_ExecuteText(EXEC_APPEND, "vid_restart\n");
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.IN_Restart( );
|
2008-08-22 22:16:37 +00:00
|
|
|
}
|
2008-08-09 13:20:00 +00:00
|
|
|
|
2007-09-05 18:17:46 +00:00
|
|
|
r_fullscreen->modified = qfalse;
|
|
|
|
}
|
|
|
|
}
|