[Mesa-dev] [PATCH] radv: fix buffer views on SI/CIK.

Bas Nieuwenhuizen bas at basnieuwenhuizen.nl
Mon Jul 24 18:07:19 UTC 2017


On Mon, Jul 24, 2017 at 12:44 PM, Dave Airlie <airlied at gmail.com> wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> Fixes CTS dEQP-VK.memory.pipeline_barrier.host_write_uniform_texel_buffer.1024
> on SI/CIK with radv.
>
> Fixes: f4e499ec (radv: add initial non-conformant radv vulkan driver)
> Signed-off-by: Dave Airlie <airlied at redhat.com>
> ---
>  src/amd/vulkan/radv_image.c | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
> index 66cff52..2b81618 100644
> --- a/src/amd/vulkan/radv_image.c
> +++ b/src/amd/vulkan/radv_image.c
> @@ -181,6 +181,11 @@ radv_make_buffer_descriptor(struct radv_device *device,
>         state[0] = va;
>         state[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) |
>                 S_008F04_STRIDE(stride);
> +
> +       if (device->physical_device->rad_info.chip_class != VI && stride) {

with chip_class < VI this patch is

Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

> +               range /= stride;
> +       }
> +
>         state[2] = range;
>         state[3] = S_008F0C_DST_SEL_X(radv_map_swizzle(desc->swizzle[0])) |
>                    S_008F0C_DST_SEL_Y(radv_map_swizzle(desc->swizzle[1])) |
> --
> 2.9.4
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list