diff options
author | Emil Velikov <[email protected]> | 2017-07-07 19:13:59 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-07-19 13:06:50 +0100 |
commit | 7791949dadd5af707055d0076874177e5e8e2133 (patch) | |
tree | a3a45f4c854e306a2f04f99d0f88d50456923042 /src/gallium | |
parent | 225e45d45c7b836c6dc52e3ed840160c4d62f798 (diff) |
swrast: add dri2ConfigQueryExtension to the correct extension list
The extension should be in the list as returned by getExtensions().
Seems to have gone unnoticed since close to nobody wants to change the
vblank mode for the software driver.
v2: Rebase
Cc: [email protected]
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Alex Deucher <[email protected]> (v1)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/dri/dri2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c index 787949ec396..f74f1d19b19 100644 --- a/src/gallium/state_trackers/dri/dri2.c +++ b/src/gallium/state_trackers/dri/dri2.c @@ -2004,7 +2004,7 @@ static const __DRIextension *dri_robust_screen_extensions[] = { &dri2FlushExtension.base, &dri2ImageExtension.base, &dri2RendererQueryExtension.base, - &dri2ConfigQueryExtension.base, + &dri2GalliumConfigQueryExtension.base, &dri2ThrottleExtension.base, &dri2FenceExtension.base, &dri2InteropExtension.base, |