v98: replace vkUpdateDescriptors() by vkUpdateDescriptorSets()

Only slightly tested.

Conflicts:
	include/vulkan.h
diff --git a/tests/render_tests.cpp b/tests/render_tests.cpp
index 3e6ad95..b7472e9 100644
--- a/tests/render_tests.cpp
+++ b/tests/render_tests.cpp
@@ -277,7 +277,7 @@
 protected:
     VkImage m_texture;
     VkImageView m_textureView;
-    VkImageViewAttachInfo m_textureViewInfo;
+    VkDescriptorInfo m_descriptorInfo;
     VkDeviceMemory m_textureMem;
 
     VkSampler m_sampler;
@@ -293,8 +293,7 @@
         this->app_info.engineVersion = 1;
         this->app_info.apiVersion = VK_API_VERSION;
 
-        memset(&m_textureViewInfo, 0, sizeof(m_textureViewInfo));
-        m_textureViewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_ATTACH_INFO;
+        memset(&m_descriptorInfo, 0, sizeof(m_descriptorInfo));
 
         InitFramework();
     }