diff options
author | Kristian Høgsberg <[email protected]> | 2010-07-19 16:39:53 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-07-19 22:45:50 -0400 |
commit | 089fc37c6fa158824279e08e3b378ced94d6f803 (patch) | |
tree | 9308524e0aa8f63bfa54ef633188c225c4468574 /src/glx/glxclient.h | |
parent | 9e546ecfd446abf1236cdb0b9469157de5d084ce (diff) |
glx: Move DRI1 specific extensions and code to DRI1 screen private
Diffstat (limited to 'src/glx/glxclient.h')
-rw-r--r-- | src/glx/glxclient.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 22c98437135..b865e24b36e 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -151,7 +151,7 @@ struct __GLXDRIscreenRec { int64_t *msc, int64_t *sbc); int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc); - void (*setSwapInterval)(__GLXDRIdrawable *pdraw, int interval); + int (*setSwapInterval)(__GLXDRIdrawable *pdraw, int interval); int (*getSwapInterval)(__GLXDRIdrawable *pdraw); }; @@ -541,18 +541,10 @@ struct __GLXscreenConfigsRec const __DRIcopySubBufferExtension *driCopySubBuffer; #endif -#ifdef __DRI_SWAP_CONTROL - const __DRIswapControlExtension *swapControl; -#endif - #ifdef __DRI_FRAME_TRACKING const __DRIframeTrackingExtension *frameTracking; #endif -#ifdef __DRI_MEDIA_STREAM_COUNTER - const __DRImediaStreamCounterExtension *msc; -#endif - #endif /** |