diff options
author | Kristian Høgsberg <[email protected]> | 2010-07-19 18:11:03 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-07-19 22:45:50 -0400 |
commit | 271c3c3a90ccfd01da9d7ac7fa451518f4e6a27c (patch) | |
tree | c0d4b2b52fddaf760d72e1e387b7c233436f5b39 /src/glx/glxcmds.c | |
parent | 22266c391fbe17603b15a83d4ccf5fa9455ccf8d (diff) |
glx: Move __DRIdrawable pointers to DRI drawable privates
Diffstat (limited to 'src/glx/glxcmds.c')
-rw-r--r-- | src/glx/glxcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index f51df7bca14..a75226a657c 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -2481,7 +2481,7 @@ __glXGetMscRateOML(Display * dpy, GLXDrawable drawable, if (draw == NULL) return False; - return __driGetMscRateOML(draw->driDrawable, numerator, denominator, draw); + return __driGetMscRateOML(NULL, numerator, denominator, draw); #else (void) dpy; (void) drawable; |