tests: Buffers/Images that map need VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT
diff --git a/tests/vktestframework.cpp b/tests/vktestframework.cpp
index 9a5df36..17c4c8f 100644
--- a/tests/vktestframework.cpp
+++ b/tests/vktestframework.cpp
@@ -222,8 +222,9 @@
     VkResult err;
     int x, y;
     VkImageObj displayImage(image->device());
+    VkMemoryPropertyFlags reqs = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT;
 
-    displayImage.init(image->extent().width, image->extent().height, image->format(), 0, VK_IMAGE_TILING_LINEAR);
+    displayImage.init(image->extent().width, image->extent().height, image->format(), 0, VK_IMAGE_TILING_LINEAR, reqs);
     displayImage.CopyImage(*image);
 
     filename.append(basename);