summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_device.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vk_device: Enable features when available and misc changesReinUsesLisp2019-05-261-15/+43
| | | | | | | | | | | | Keeps track of native ASTC support, VK_EXT_scalar_block_layout availability and SSBO range. Check for independentBlend and vertexPipelineStorageAndAtomics as a required feature. Always enable it. Use vk::to_string format to log Vulkan enums. Style changes.
* vk_device: Abstract device handling into a classReinUsesLisp2019-02-131-0/+116
VKDevice contains all the data required to manage and initialize a physical device. Its intention is to be passed across Vulkan objects to query device-specific data (for example the logical device and the dispatch loader).