summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_device.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-13vk_device: Enable VK_EXT_transform_feedback when availableReinUsesLisp1-0/+6
2020-03-13vk_device: Shrink formatless capability name sizeReinUsesLisp1-20/+19
2020-02-19vk_device: add check for shaderStorageImageReadWithoutFormatNguyen Dac Nam1-0/+7
2019-12-19vk_device: Add entry to catch device lossesReinUsesLisp1-0/+9
VK_NV_device_diagnostic_checkpoints allows us to push data to a Vulkan queue and then query it even after a device loss. This allows us to push the current pipeline object and see what was the call that killed the device.
2019-12-09vk_device: Misc changesReinUsesLisp1-17/+77
- Setup more features and requirements. - Improve logging for missing features. - Collect telemetry parameters. - Add queries for more image formats. - Query push constants limits. - Optionally enable some extensions.
2019-09-13vk_device: Add miscellaneous features and minor style changesReinUsesLisp1-18/+44
* Increase minimum Vulkan requirements * Require VK_EXT_vertex_attribute_divisor * Require depthClamp, samplerAnisotropy and largePoints features * Search and expose VK_KHR_uniform_buffer_standard_layout * Search and expose VK_EXT_index_type_uint8 * Search and expose native float16 arithmetics * Track current driver with VK_KHR_driver_properties * Query and expose SSBO alignment * Query more image formats * Improve logging overall * Minor style changes * Minor rephrasing of commentaries
2019-05-26vk_device: Enable features when available and misc changesReinUsesLisp1-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.
2019-02-13vk_device: Abstract device handling into a classReinUsesLisp1-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).