winevulkan: Trace structure types as decimal numbers.
In Vulkan headers, structure types are specified as decimal numbers. Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ccfdf651d1
commit
f3f38eb8c7
|
@ -303,7 +303,7 @@ static VkResult wine_vk_device_convert_create_info(const VkDeviceCreateInfo *src
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
FIXME("Application requested a linked structure of type %#x.\n", header->sType);
|
FIXME("Application requested a linked structure of type %u.\n", header->sType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -408,7 +408,7 @@ static VkResult wine_vk_instance_convert_create_info(const VkInstanceCreateInfo
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
FIXME("Application requested a linked structure of type %#x.\n", header->sType);
|
FIXME("Application requested a linked structure of type %u.\n", header->sType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1028,7 +1028,7 @@ void WINAPI wine_vkGetDeviceQueue2(VkDevice device, const VkDeviceQueueInfo2 *in
|
||||||
TRACE("%p, %p, %p\n", device, info, queue);
|
TRACE("%p, %p, %p\n", device, info, queue);
|
||||||
|
|
||||||
if ((chain = info->pNext))
|
if ((chain = info->pNext))
|
||||||
FIXME("Ignoring a linked structure of type %#x.\n", chain->sType);
|
FIXME("Ignoring a linked structure of type %u.\n", chain->sType);
|
||||||
|
|
||||||
matching_queue = &device->queues[info->queueFamilyIndex][info->queueIndex];
|
matching_queue = &device->queues[info->queueFamilyIndex][info->queueIndex];
|
||||||
if (matching_queue->flags != info->flags)
|
if (matching_queue->flags != info->flags)
|
||||||
|
|
Loading…
Reference in New Issue