vulkan: beautification changes

TODO: verify vk-layer-generate.py

TODO: need to rename object tracker generator

v2: fix "python3 vulkan.py"
    fix dead cod in tri introduced by rebase
    beautify wsi_null.c (olv)
diff --git a/icd/intel/queue.h b/icd/intel/queue.h
index 3ca6e78..bdbe53b 100644
--- a/icd/intel/queue.h
+++ b/icd/intel/queue.h
@@ -53,16 +53,16 @@
     struct intel_fence *fence;
 };
 
-static inline struct intel_queue *intel_queue(VK_QUEUE queue)
+static inline struct intel_queue *intel_queue(VkQueue queue)
 {
     return (struct intel_queue *) queue;
 }
 
-VK_RESULT intel_queue_create(struct intel_dev *dev,
+VkResult intel_queue_create(struct intel_dev *dev,
                               enum intel_gpu_engine_type engine,
                               struct intel_queue **queue_ret);
 void intel_queue_destroy(struct intel_queue *queue);
 
-VK_RESULT intel_queue_wait(struct intel_queue *queue, int64_t timeout);
+VkResult intel_queue_wait(struct intel_queue *queue, int64_t timeout);
 
 #endif /* QUEUE_H */