1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

vk: Avoid repeated chip_class lookup by using generic global function

This commit is contained in:
kd-11 2021-05-25 19:10:47 +03:00 committed by kd-11
parent 7508949ca8
commit 122bb4d829

View File

@ -256,7 +256,7 @@ namespace vk
void create_dma_block(std::unique_ptr<dma_block>& block, u32 base_address, usz expected_length)
{
const auto vendor = g_render_device->gpu().get_driver_vendor();
[[maybe_unused]] const auto chip = g_render_device->gpu().get_chip_class();
[[maybe_unused]] const auto chip = vk::get_chip_family();
#if defined(_WIN32)
bool allow_host_buffers;