mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-07 03:58:09 +00:00
Dump extensions info to the log
This commit is contained in:
parent
ed1da364e5
commit
ec4565263d
@ -687,6 +687,13 @@ namespace vk
|
||||
|
||||
CHECK_RESULT_EX(vkCreateDevice(*pgpu, &device, nullptr, &dev), message_on_error);
|
||||
|
||||
// Dump some diagnostics to the log
|
||||
rsx_log.notice("%u extensions loaded:", ::size32(requested_extensions));
|
||||
for (const auto& ext : requested_extensions)
|
||||
{
|
||||
rsx_log.always()("** Using %s", ext);
|
||||
}
|
||||
|
||||
// Initialize queues
|
||||
vkGetDeviceQueue(dev, graphics_queue_idx, 0, &m_graphics_queue);
|
||||
vkGetDeviceQueue(dev, transfer_queue_idx, transfer_queue_sub_index, &m_transfer_queue);
|
||||
|
Loading…
Reference in New Issue
Block a user