From: Nanley Chery Date: Wed, 2 Mar 2016 17:44:48 +0000 (-0800) Subject: anv/image: Create a linear image when requested X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d9d90d9a6323c37e80b7870946597b470d8dec0;p=mesa.git anv/image: Create a linear image when requested If a linear image is requested, the only possible result should be a linearly-tiled surface. Signed-off-by: Nanley Chery Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 46cf2413468..dc1ea9c80cc 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -120,7 +120,7 @@ make_surface(const struct anv_device *dev, isl_tiling_flags_t tiling_flags = anv_info->isl_tiling_flags; if (vk_info->tiling == VK_IMAGE_TILING_LINEAR) - tiling_flags &= ISL_TILING_LINEAR_BIT; + tiling_flags = ISL_TILING_LINEAR_BIT; struct anv_surface *anv_surf = get_surface(image, aspect);