oops, undo previous change

This commit is contained in:
Brian Paul
2005-06-02 04:07:08 +00:00
parent 1516f559bc
commit 13c8f985d9
2 changed files with 2 additions and 8 deletions

View File

@@ -1648,8 +1648,7 @@ float
driCalculateSwapUsage( __DRIdrawablePrivate *dPriv, int64_t last_swap_ust,
int64_t current_ust )
{
#if 0
static glXGetMscRateOML_t get_msc_rate = NULL;
static PFNGLXGETMSCRATEOMLPROC get_msc_rate = NULL;
int32_t n;
int32_t d;
int interval;
@@ -1657,7 +1656,7 @@ driCalculateSwapUsage( __DRIdrawablePrivate *dPriv, int64_t last_swap_ust,
if ( get_msc_rate == NULL ) {
get_msc_rate = (glXGetMscRateOML_t)
get_msc_rate = (PFNGLXGETMSCRATEOMLPROC)
glXGetProcAddress( (const GLubyte *) "glXGetMscRateOML" );
}
@@ -1686,9 +1685,6 @@ driCalculateSwapUsage( __DRIdrawablePrivate *dPriv, int64_t last_swap_ust,
}
return usage;
#else
return 0;
#endif
}
/*@}*/

View File

@@ -568,11 +568,9 @@ driCalculateSwapUsage( __DRIdrawablePrivate *dPriv,
int64_t last_swap_ust, int64_t current_ust );
/* Test for the GLX header glx.h */
#if 0
#ifndef GLX
extern void
(*glXGetProcAddress(const GLubyte *procname))( void );
#endif
#endif
#endif /* _DRI_UTIL_H_ */