Incorporated code changes contributed by Charlie Hotchkiss
<chotchkiss@namg.us.anritsu.com>
This commit is contained in:
parent
6179ec5319
commit
aa645019e9
1 changed files with 6 additions and 1 deletions
|
@ -2772,8 +2772,13 @@ void xglutIdleFunc ( void (*func)(void) )
|
||||||
|
|
||||||
void xglutInit ( int* argcp, char** argv )
|
void xglutInit ( int* argcp, char** argv )
|
||||||
{
|
{
|
||||||
|
if(!xglTraceFd ) { // Not defined by any other means, must be here
|
||||||
|
xglTraceFd = stdout; // avoid a crash from a NULL ptr.
|
||||||
|
}
|
||||||
if ( xglTraceIsEnabled("glutInit") )
|
if ( xglTraceIsEnabled("glutInit") )
|
||||||
fprintf ( xglTraceFd, " /* glutInit ( (int *)0x%08x, (char **)0x%08x ) ; */\n" , argcp, argv ) ;
|
fprintf ( xglTraceFd,
|
||||||
|
" /* glutInit ( (int *)0x%08x, (char **)0x%08x ) ; */\n" ,
|
||||||
|
argcp, argv ) ;
|
||||||
if ( xglExecuteIsEnabled("glutInit") )
|
if ( xglExecuteIsEnabled("glutInit") )
|
||||||
glutInit ( argcp, argv ) ;
|
glutInit ( argcp, argv ) ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue