diff options
author | Nanley Chery <[email protected]> | 2016-03-02 09:44:48 -0800 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2016-03-03 11:24:17 -0800 |
commit | 1d9d90d9a6323c37e80b7870946597b470d8dec0 (patch) | |
tree | 7b7b74bde960202d3fe69fbef88468155019d375 /src/intel/vulkan/anv_image.c | |
parent | 091f1da902c71ac8d3d27b325a118e2f683f1ae5 (diff) |
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 <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_image.c')
-rw-r--r-- | src/intel/vulkan/anv_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |