summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_descriptor_pool.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update src/video_core/renderer_vulkan/vk_descriptor_pool.cppRodrigo Locatti2020-01-031-1/+1
| | | Co-Authored-By: Mat M. <mathew1800@gmail.com>
* vk_descriptor_pool: Initial implementationReinUsesLisp2020-01-011-0/+89
Create a large descriptor pool where we allocate all our descriptors from. It has to be wide enough to support any pipeline, hence its large numbers. If the descritor pool is filled, we allocate more memory at that moment. This way we can take advantage of permissive drivers like Nvidia's that allocate more descriptors than what the spec requires.