v98: replace vkUpdateDescriptors() by vkUpdateDescriptorSets()

Only slightly tested.

Conflicts:
	include/vulkan.h
diff --git a/layers/draw_state.h b/layers/draw_state.h
index 1915e71..a7b0a20 100644
--- a/layers/draw_state.h
+++ b/layers/draw_state.h
@@ -108,13 +108,13 @@
 typedef struct _IMAGE_NODE {
     VkImageView             image;
     VkImageViewCreateInfo createInfo;
-    VkImageViewAttachInfo attachInfo;
+    VkDescriptorInfo descriptorInfo;
 } IMAGE_NODE;
 
 typedef struct _BUFFER_NODE {
     VkBufferView             buffer;
     VkBufferViewCreateInfo createInfo;
-    VkBufferViewAttachInfo attachInfo;
+    VkDescriptorInfo descriptorInfo;
 } BUFFER_NODE;
 
 typedef struct _DYNAMIC_STATE_NODE {