summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_device.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vk_device: Enable VK_EXT_transform_feedback when availableReinUsesLisp2020-03-131-0/+6
|
* vk_device: Shrink formatless capability name sizeReinUsesLisp2020-03-131-20/+19
|
* vk_device: add check for shaderStorageImageReadWithoutFormatNguyen Dac Nam2020-02-191-0/+7
|
* vk_device: Add entry to catch device lossesReinUsesLisp2019-12-191-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.
* vk_device: Misc changesReinUsesLisp2019-12-091-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.
* vk_device: Add miscellaneous features and minor style changesReinUsesLisp2019-09-131-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
* 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).