mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
10 lines
335 B
C++
10 lines
335 B
C++
#pragma once
|
|
|
|
#include "vkutils/shared.h"
|
|
#include "Emu/RSX/Common/simple_array.hpp"
|
|
|
|
namespace vk
|
|
{
|
|
// Returns an array of pool sizes that can be used to generate a proper descriptor pool
|
|
rsx::simple_array<VkDescriptorPoolSize> get_descriptor_pool_sizes(const rsx::simple_array<VkDescriptorSetLayoutBinding>& bindings);
|
|
}
|