From ef342aad80503659beac9ae4645d11d9bb17d847 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 12 Feb 2014 19:50:53 +0000 Subject: [PATCH] glx/dri_common: use the implemented version of __DRIsystemTimeExtension ... over the one provided by the headers. Explicitly set extension members to improve clarity. Signed-off-by: Emil Velikov Reviewed-by: Ian Romanick --- src/glx/dri_common.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c index 012c8f4..8bf4705 100644 --- a/src/glx/dri_common.c +++ b/src/glx/dri_common.c @@ -192,9 +192,10 @@ __driGetMSCRate(__DRIdrawable *draw, } _X_HIDDEN const __DRIsystemTimeExtension systemTimeExtension = { - {__DRI_SYSTEM_TIME, __DRI_SYSTEM_TIME_VERSION}, - __glXGetUST, - __driGetMSCRate + .base = {__DRI_SYSTEM_TIME, 1 }, + + .getUST = __glXGetUST, + .getMSCRate = __driGetMSCRate }; #define __ATTRIB(attrib, field) \ -- 2.7.4