extern "C" so that I can also use c++
[vkrt] / src / vk.c
index bde9972..5aabed1 100644 (file)
--- a/src/vk.c
+++ b/src/vk.c
@@ -1018,7 +1018,7 @@ are_props_supported(struct vk_ctx *ctx, struct vk_att_props *props)
         VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2;
     img_fmt_info.pNext = props->need_export ? &ext_img_fmt_info : 0;
     img_fmt_info.format = props->format;
-    img_fmt_info.type = get_image_type(props->h, props->depth);
+    img_fmt_info.type = VK_IMAGE_TYPE_2D;
     img_fmt_info.tiling = props->tiling;
 
     for (i = 0; i < ARRAY_SIZE(all_flags); i++) {
@@ -1033,8 +1033,7 @@ are_props_supported(struct vk_ctx *ctx, struct vk_att_props *props)
     /* usage can't be null */
     if (flags) {
         img_fmt_info.usage = flags;
-    }
-    else {
+    } else {
         if (!props->is_swapchain) {
             fprintf(stderr, "Unsupported Vulkan format properties: usage.\n");
             return false;