Commit 063f6baa authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

winevulkan: Use %#x to trace enums.

parent 1585b50f
...@@ -1141,10 +1141,8 @@ class VkParam(object): ...@@ -1141,10 +1141,8 @@ class VkParam(object):
if self.is_static_array() or self.is_pointer(): if self.is_static_array() or self.is_pointer():
self.format_str = "%p" self.format_str = "%p"
else: else:
if self.type_info["category"] == "bitmask": if self.type_info["category"] in ["bitmask", "enum"]:
self.format_str = "%#x" self.format_str = "%#x"
elif self.type_info["category"] == "enum":
self.format_str = "%d"
elif self.is_handle(): elif self.is_handle():
# We use uint64_t for non-dispatchable handles as opposed to pointers # We use uint64_t for non-dispatchable handles as opposed to pointers
# for dispatchable handles. # for dispatchable handles.
......
...@@ -555,7 +555,7 @@ VkResult WINAPI wine_vkCreateDevice(VkPhysicalDevice phys_dev, ...@@ -555,7 +555,7 @@ VkResult WINAPI wine_vkCreateDevice(VkPhysicalDevice phys_dev,
phys_dev->instance->funcs.p_vkGetPhysicalDeviceQueueFamilyProperties(phys_dev->phys_dev, phys_dev->instance->funcs.p_vkGetPhysicalDeviceQueueFamilyProperties(phys_dev->phys_dev,
&max_queue_families, NULL); &max_queue_families, NULL);
object->max_queue_families = max_queue_families; object->max_queue_families = max_queue_families;
TRACE("Max queue families: %d\n", object->max_queue_families); TRACE("Max queue families: %u\n", object->max_queue_families);
object->queues = heap_calloc(max_queue_families, sizeof(*object->queues)); object->queues = heap_calloc(max_queue_families, sizeof(*object->queues));
if (!object->queues) if (!object->queues)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment