vulkan: API renaming

VK_DEVICE_QUEUE_CREATE_INFO => VkDeviceQueueCreateInfo
VK_DEVICE_CREATE_INFO => VkDeviceCreateInfo
VK_INSTANCE_CREATE_INFO => VkInstanceCreateInfo
VK_LAYER_CREATE_INFO => VkLayerCreateInfo
VK_MEMORY_ALLOC_INFO => VkMemoryAllocInfo
VK_MEMORY_ALLOC_IMAGE_INFO => VkMemoryAllocImageInfo
VK_MEMORY_ALLOC_BUFFER_INFO => VkMemoryAllocBufferInfo
VK_BUFFER_CREATE_INFO => VkBufferCreateInfo
VK_BUFFER_VIEW_CREATE_INFO => VkBufferViewCreateInfo
diff --git a/icd/intel/dev.c b/icd/intel/dev.c
index 94bcd42..44eaea2 100644
--- a/icd/intel/dev.c
+++ b/icd/intel/dev.c
@@ -66,7 +66,7 @@
 }
 
 static VK_RESULT dev_create_queues(struct intel_dev *dev,
-                                    const VK_DEVICE_QUEUE_CREATE_INFO *queues,
+                                    const VkDeviceQueueCreateInfo *queues,
                                     uint32_t count)
 {
     uint32_t i;
@@ -75,7 +75,7 @@
         return VK_ERROR_INVALID_POINTER;
 
     for (i = 0; i < count; i++) {
-        const VK_DEVICE_QUEUE_CREATE_INFO *q = &queues[i];
+        const VkDeviceQueueCreateInfo *q = &queues[i];
         VK_RESULT ret = VK_SUCCESS;
 
         if (q->queueNodeIndex < INTEL_GPU_ENGINE_COUNT &&
@@ -100,7 +100,7 @@
 }
 
 VK_RESULT intel_dev_create(struct intel_gpu *gpu,
-                            const VK_DEVICE_CREATE_INFO *info,
+                            const VkDeviceCreateInfo *info,
                             struct intel_dev **dev_ret)
 {
     struct intel_dev *dev;
@@ -321,7 +321,7 @@
 
 ICD_EXPORT VK_RESULT VKAPI vkCreateDevice(
     VK_PHYSICAL_GPU                            gpu_,
-    const VK_DEVICE_CREATE_INFO*               pCreateInfo,
+    const VkDeviceCreateInfo*               pCreateInfo,
     VK_DEVICE*                                 pDevice)
 {
     struct intel_gpu *gpu = intel_gpu(gpu_);