Skip to content

Commit

Permalink
[null/null_glimp.c] Fix up bitrot in null impl
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoeppe committed Jul 26, 2016
1 parent 7164381 commit bbe99a8
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions code/null/null_glimp.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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
===========================================================================
*/
#include "tr_common.h"
#include "../renderercommon/tr_common.h"


qboolean ( * qwglSwapIntervalEXT)( int interval );
Expand All @@ -35,8 +35,7 @@ void ( * qglUnlockArraysEXT) ( void );
void GLimp_EndFrame( void ) {
}

int GLimp_Init( void )
{
void GLimp_Init( void ) {
}

void GLimp_Shutdown( void ) {
Expand All @@ -45,12 +44,18 @@ void GLimp_Shutdown( void ) {
void GLimp_EnableLogging( qboolean enable ) {
}

void GLimp_LogComment( char *comment ) {
void GLimp_LogComment( char *comment ) {
}

qboolean QGL_Init( const char *dllname ) {
qboolean QGL_Init( const char *dllname ) {
return qtrue;
}

void QGL_Shutdown( void ) {
}

void GLimp_SetGamma( unsigned char red[256], unsigned char green[256], unsigned char blue[256] ) {
}

void GLimp_Minimize( void ) {
}

0 comments on commit bbe99a8

Please sign in to comment.