From a9cef4f0e5e447468e192889609b8c73ef5c5bda Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 15 May 2019 04:32:51 +0000 Subject: [PATCH] gallium: Add default check for PIPE_CAP_FRAGMENT_SHADER_INTERLOCK Fixes: c704c0226 ("gallium: Add a PIPE_CAP_FRAGMENT_SHADER_INTERLOCK") Signed-off-by: Alyssa Rosenzweig Reviewed-by: Kenneth Graunke --- src/gallium/auxiliary/util/u_screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/auxiliary/util/u_screen.c b/src/gallium/auxiliary/util/u_screen.c index f1f9bfa0d62..b3a5a93e4f7 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -326,6 +326,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_TGSI_SKIP_SHRINK_IO_ARRAYS: case PIPE_CAP_IMAGE_LOAD_FORMATTED: case PIPE_CAP_PREFER_COMPUTE_BLIT_FOR_MULTIMEDIA: + case PIPE_CAP_FRAGMENT_SHADER_INTERLOCK: return 0; case PIPE_CAP_MAX_GS_INVOCATIONS: -- 2.30.2