diff --git a/src/Magnum/Vk/Test/ImageVkTest.cpp b/src/Magnum/Vk/Test/ImageVkTest.cpp index ae6a2274f..bb012ee98 100644 --- a/src/Magnum/Vk/Test/ImageVkTest.cpp +++ b/src/Magnum/Vk/Test/ImageVkTest.cpp @@ -282,7 +282,7 @@ template void ImageVkTest::wrap() { void ImageVkTest::memoryRequirements() { /* Use linear tiling for a deterministic memory size */ - ImageCreateInfo2D info{ImageUsage::Sampled, PixelFormat::RGBA8Unorm, {128, 64}, 1}; + ImageCreateInfo2D info{ImageUsage::TransferDestination, PixelFormat::RGBA8Unorm, {128, 64}, 1}; info->tiling = VK_IMAGE_TILING_LINEAR; Image image{device(), info, NoAllocate};