1 /*
2 ===========================================================================
3 Copyright (C) 1999-2005 Id Software, Inc.
4 
5 This file is part of Quake III Arena source code.
6 
7 Quake III Arena source code is free software; you can redistribute it
8 and/or modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the License,
10 or (at your option) any later version.
11 
12 Quake III Arena source code is distributed in the hope that it will be
13 useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Quake III Arena source code; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 ===========================================================================
21 */
22 #include "../renderer/tr_local.h"
23 
24 
25 qboolean ( * qwglSwapIntervalEXT)( int interval );
26 void ( * qglMultiTexCoord2fARB )( GLenum texture, float s, float t );
27 void ( * qglActiveTextureARB )( GLenum texture );
28 void ( * qglClientActiveTextureARB )( GLenum texture );
29 
30 
31 void ( * qglLockArraysEXT)( int, int);
32 void ( * qglUnlockArraysEXT) ( void );
33 
34 
GLimp_EndFrame(void)35 void		GLimp_EndFrame( void ) {
36 }
37 
GLimp_Init(void)38 int 		GLimp_Init( void )
39 {
40 }
41 
GLimp_Shutdown(void)42 void		GLimp_Shutdown( void ) {
43 }
44 
GLimp_EnableLogging(qboolean enable)45 void		GLimp_EnableLogging( qboolean enable ) {
46 }
47 
GLimp_LogComment(char * comment)48 void GLimp_LogComment( char *comment ) {
49 }
50 
QGL_Init(const char * dllname)51 qboolean QGL_Init( const char *dllname ) {
52 	return qtrue;
53 }
54 
QGL_Shutdown(void)55 void		QGL_Shutdown( void ) {
56 }
57