From 5e988ac61f38e8a4497b171c45cfe9521925e206 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 13 Feb 2017 22:54:53 -0500 Subject: [PATCH] radv: align the initial state command buffer. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This just adds the padding to align this to an 8 dword boundary. Tested-by: Kai Wasserbäch Reviewed-by: Edward O'Callaghan Reviewed-by: Bas Nieuwenhuizen Signed-off-by: Dave Airlie --- src/amd/vulkan/si_cmd_buffer.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c index cb137aadfc4..8dd9f650238 100644 --- a/src/amd/vulkan/si_cmd_buffer.c +++ b/src/amd/vulkan/si_cmd_buffer.c @@ -445,6 +445,13 @@ cik_create_gfx_config(struct radv_device *device) si_emit_config(device->physical_device, cs); + while (cs->cdw & 7) { + if (device->physical_device->rad_info.gfx_ib_pad_with_type2) + radeon_emit(cs, 0x80000000); + else + radeon_emit(cs, 0xffff1000); + } + device->gfx_init = device->ws->buffer_create(device->ws, cs->cdw * 4, 4096, RADEON_DOMAIN_GTT, -- 2.30.2