mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 20:10:23 +01:00
oops, undo previous change
This commit is contained in:
parent
1516f559bc
commit
13c8f985d9
2 changed files with 2 additions and 8 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
/*@}*/
|
||||
|
|
|
|||
|
|
@ -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_ */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue