Module: Mesa Branch: main Commit: 5be00fe88abb618454e1c448e6e61c8dea49c27f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5be00fe88abb618454e1c448e6e61c8dea49c27f
Author: Gert Wollny <[email protected]> Date: Fri Apr 30 20:14:09 2021 +0200 r600: Enable NIR debug flags also for Cayman Signed-off-by: Gert Wollny <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10608> --- src/gallium/drivers/r600/r600_pipe.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 9e11c7442b6..8e7258e23d7 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -247,8 +247,7 @@ fail: static bool is_nir_enabled(struct r600_common_screen *screen) { return ((screen->debug_flags & DBG_NIR_PREFERRED) && - screen->family >= CHIP_CEDAR && - screen->family < CHIP_CAYMAN); + screen->family >= CHIP_CEDAR); } /* _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
