=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: winevulkan: Avoid FIXMEs for unsupported Vulkan functions.

Alexandre Julliard julliard at winehq.org
Tue Jul 17 15:52:37 CDT 2018


Module: wine
Branch: master
Commit: a77416c47a3dc61b5553d310e1b0f87ffb7a605f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a77416c47a3dc61b5553d310e1b0f87ffb7a605f

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Tue Jul 17 10:40:18 2018 +0200

winevulkan: Avoid FIXMEs for unsupported Vulkan functions.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winevulkan/vulkan.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/winevulkan/vulkan.c b/dlls/winevulkan/vulkan.c
index 5c156c1..0bb68c2 100644
--- a/dlls/winevulkan/vulkan.c
+++ b/dlls/winevulkan/vulkan.c
@@ -935,7 +935,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetDeviceProcAddr(VkDevice device, const char *
         return func;
     }
 
-    TRACE("Function %s not found.\n", debugstr_a(name));
+    WARN("Unsupported device function: %s.\n", debugstr_a(name));
     return NULL;
 }
 
@@ -970,7 +970,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
 {
     void *func;
 
-    TRACE("%p %s\n", instance, debugstr_a(name));
+    TRACE("%p, %s\n", instance, debugstr_a(name));
 
     if (!name)
         return NULL;
@@ -985,7 +985,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
     }
     if (!instance)
     {
-        FIXME("Global function %s not found.\n", debugstr_a(name));
+        WARN("Global function %s not found.\n", debugstr_a(name));
         return NULL;
     }
 
@@ -996,13 +996,13 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
     func = wine_vk_get_device_proc_addr(name);
     if (func) return func;
 
-    FIXME("Unsupported device or instance function: %s.\n", debugstr_a(name));
+    WARN("Unsupported device or instance function: %s.\n", debugstr_a(name));
     return NULL;
 }
 
 void * WINAPI wine_vk_icdGetInstanceProcAddr(VkInstance instance, const char *name)
 {
-    TRACE("%p %s\n", instance, debugstr_a(name));
+    TRACE("%p, %s\n", instance, debugstr_a(name));
 
     /* Initial version of the Vulkan ICD spec required vkGetInstanceProcAddr to be
      * exported. vk_icdGetInstanceProcAddr was added later to separate ICD calls from




More information about the wine-cvs mailing list