summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_image.c
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2016-03-21 10:41:06 -0700
committerNanley Chery <nanley.g.chery@intel.com>2016-03-25 17:33:40 -0700
commit4eab37d6cda54a4ac600347f764ef223c3a7459f (patch)
treef760ff08be5f934098fddbc7a13df16129c620b7 /src/intel/vulkan/anv_image.c
parent38250a9ca32ea79ada10918952c2917b535a4536 (diff)
downloadexternal_mesa3d-4eab37d6cda54a4ac600347f764ef223c3a7459f.zip
external_mesa3d-4eab37d6cda54a4ac600347f764ef223c3a7459f.tar.gz
external_mesa3d-4eab37d6cda54a4ac600347f764ef223c3a7459f.tar.bz2
anv/image: Enable specifying a surface's minimum pitch
This is required to create multiple, horizontally adjacent, max-width images from one blit2d surface. This is also required for more accurate width specification of surfaces within a larger surface (which is seen as the smaller surface's enclosing region). Note that anv_image_create_info::stride has been unused since commit, b36938964063a4072abfd779f5607743dbc3b6f1 . Signed-off-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/intel/vulkan/anv_image.c')
-rw-r--r--src/intel/vulkan/anv_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c
index b47425b..266fbe7 100644
--- a/src/intel/vulkan/anv_image.c
+++ b/src/intel/vulkan/anv_image.c
@@ -138,7 +138,7 @@ make_surface(const struct anv_device *dev,
.array_len = vk_info->arrayLayers,
.samples = vk_info->samples,
.min_alignment = 0,
- .min_pitch = 0,
+ .min_pitch = anv_info->stride,
.usage = choose_isl_surf_usage(image->usage, aspect),
.tiling_flags = tiling_flags);