zink: respect feature-cap for sample-shading

Vulkan has a cap to enable this, we should check that one rather than
always claiming support.

Fixes: 0c70268ff7 ("zink: mark ARB_sample_shading as supported")
Reviewed-by: Hoe Hao Cheng <haochengho12907@gmail.com>
Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8640>
This commit is contained in:
Erik Faye-Lund 2021-01-22 09:11:51 +01:00 committed by Marge Bot
parent 612169859a
commit 6f6941e2dd

View file

@ -153,9 +153,11 @@ zink_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
return screen->timestamp_valid_bits > 0;
case PIPE_CAP_TEXTURE_MULTISAMPLE:
case PIPE_CAP_SAMPLE_SHADING:
return 1;
case PIPE_CAP_SAMPLE_SHADING:
return screen->info.feats.features.sampleRateShading;
case PIPE_CAP_TEXTURE_SWIZZLE:
return 1;