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
|
|
|
|
|
2013-02-16 20:58:04 +00:00
|
|
|
#include "../renderercommon/tr_common.h"
|
2007-09-05 18:17:46 +00:00
|
|
|
#include "../qcommon/qcommon.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
GLimp_SetGamma
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
void GLimp_SetGamma( unsigned char red[256], unsigned char green[256], unsigned char blue[256] )
|
|
|
|
{
|
|
|
|
Uint16 table[3][256];
|
|
|
|
int i, j;
|
|
|
|
|
2012-07-01 17:01:30 +00:00
|
|
|
if( !glConfig.deviceSupportsGamma || r_ignorehwgamma->integer > 0 )
|
2007-09-05 18:17:46 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
{
|
|
|
|
table[0][i] = ( ( ( Uint16 ) red[i] ) << 8 ) | red[i];
|
|
|
|
table[1][i] = ( ( ( Uint16 ) green[i] ) << 8 ) | green[i];
|
|
|
|
table[2][i] = ( ( ( Uint16 ) blue[i] ) << 8 ) | blue[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
// Win2K and newer put this odd restriction on gamma ramps...
|
|
|
|
{
|
2007-10-01 07:56:32 +00:00
|
|
|
OSVERSIONINFO vinfo;
|
|
|
|
|
|
|
|
vinfo.dwOSVersionInfoSize = sizeof( vinfo );
|
|
|
|
GetVersionEx( &vinfo );
|
|
|
|
if( vinfo.dwMajorVersion >= 5 && vinfo.dwPlatformId == VER_PLATFORM_WIN32_NT )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2011-08-01 01:19:55 +00:00
|
|
|
ri.Printf( PRINT_DEVELOPER, "performing gamma clamp.\n" );
|
2007-10-01 07:56:32 +00:00
|
|
|
for( j = 0 ; j < 3 ; j++ )
|
2007-09-05 18:17:46 +00:00
|
|
|
{
|
2007-10-01 07:56:32 +00:00
|
|
|
for( i = 0 ; i < 128 ; i++ )
|
|
|
|
{
|
|
|
|
if( table[ j ] [ i] > ( ( 128 + i ) << 8 ) )
|
|
|
|
table[ j ][ i ] = ( 128 + i ) << 8;
|
|
|
|
}
|
2007-09-05 18:17:46 +00:00
|
|
|
|
2007-10-01 07:56:32 +00:00
|
|
|
if( table[ j ] [127 ] > 254 << 8 )
|
|
|
|
table[ j ][ 127 ] = 254 << 8;
|
|
|
|
}
|
2007-09-05 18:17:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// enforce constantly increasing
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
{
|
|
|
|
for (i = 1; i < 256; i++)
|
|
|
|
{
|
|
|
|
if (table[j][i] < table[j][i-1])
|
|
|
|
table[j][i] = table[j][i-1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SetGammaRamp(table[0], table[1], table[2]);
|
|
|
|
}
|
|
|
|
|