Module: Mesa Branch: master Commit: 04c6feb12c20bcb99a25a2b75f386b474637748f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=04c6feb12c20bcb99a25a2b75f386b474637748f
Author: Bas Nieuwenhuizen <[email protected]> Date: Tue Aug 6 11:50:37 2019 +0200 radv: Fix config reg assert. Using the wrong bounds Fixes: "219d6939df8 radv: add more assertions to make sure packets are correctly emitted" Reviewed-by: Andres Rodriguez <[email protected]> Reviewed-by: Dave Airlie <[email protected]> --- src/amd/vulkan/radv_cs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_cs.h b/src/amd/vulkan/radv_cs.h index d21acba7e8e..16649c55e6a 100644 --- a/src/amd/vulkan/radv_cs.h +++ b/src/amd/vulkan/radv_cs.h @@ -42,7 +42,7 @@ static inline unsigned radeon_check_space(struct radeon_winsys *ws, static inline void radeon_set_config_reg_seq(struct radeon_cmdbuf *cs, unsigned reg, unsigned num) { - assert(reg >= SI_CONTEXT_REG_OFFSET && reg < SI_CONFIG_REG_END); + assert(reg >= SI_CONFIG_REG_OFFSET && reg < SI_CONFIG_REG_END); assert(cs->cdw + 2 + num <= cs->max_dw); assert(num); radeon_emit(cs, PKT3(PKT3_SET_CONFIG_REG, num, 0)); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
