diff options
author | Kenneth Graunke <[email protected]> | 2019-05-10 18:34:25 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-05-14 19:34:33 -0700 |
commit | bb5db02baba59e4289b19d0d6bfdb9acf35c27a5 (patch) | |
tree | d303344fe01a08f452f7fd6278fafe4c3fc707b3 /src | |
parent | c704c0226c15bd548489ab23ab8477c570edc69b (diff) |
iris: Enable fragment shader interlock on Gen9+.
There's some debate about whether we should support this on older
hardware as well. Currently i965 turns it off on Gen8- though, so
we follow suit. If this changes, we can update this as well.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/iris/iris_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index e01fd1b74aa..f77b30e7789 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -197,6 +197,7 @@ iris_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_POST_DEPTH_COVERAGE: case PIPE_CAP_SHADER_STENCIL_EXPORT: case PIPE_CAP_DEPTH_CLIP_DISABLE_SEPARATE: + case PIPE_CAP_FRAGMENT_SHADER_INTERLOCK: return devinfo->gen >= 9; case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: return 1; |