summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_device.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vk_device: Shrink formatless capability name sizeReinUsesLisp2020-03-131-4/+2
|
* Merge pull request #3417 from ReinUsesLisp/r32ibunnei2020-02-251-0/+1
|\ | | | | texture: Implement R32I
| * texture: Implement R32IReinUsesLisp2020-02-151-0/+1
| |
* | Merge pull request #3434 from namkazt/patch-2Rodrigo Locatti2020-02-211-0/+4
|\ \ | | | | | | vk_shader: Implement ImageLoad
| * | vk_device: remove left over from other branchNguyen Dac Nam2020-02-211-1/+0
| | |
| * | vk_device: setup shaderStorageImageReadWithoutFormatNguyen Dac Nam2020-02-191-0/+5
| |/
* | Merge pull request #3435 from namkazt/patch-3Rodrigo Locatti2020-02-211-0/+1
|\ \ | | | | | | vulkan: add DXT23_SRGB
| * | add eBc2SrgbBlock to formatsNguyen Dac Nam2020-02-181-0/+1
| |/
* / vk_query_cache: Implement generic query cache on VulkanReinUsesLisp2020-02-141-1/+9
|/
* settings: Add settings for graphics backendReinUsesLisp2020-01-291-2/+4
|
* vk_device: Add entry to catch device lossesReinUsesLisp2019-12-191-0/+21
| | | | | | | 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: Add query for RGBA8UintReinUsesLisp2019-12-191-0/+1
|
* vk_device: Misc changesReinUsesLisp2019-12-091-100/+199
| | | | | | | | | - 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.
* externals: Update Vulkan-HeadersReinUsesLisp2019-12-091-2/+1
|
* vk_device: Add miscellaneous features and minor style changesReinUsesLisp2019-09-131-90/+211
| | | | | | | | | | | | | | | * 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: Let formats array type be deducedReinUsesLisp2019-05-261-33/+33
|
* vk_device: Enable features when available and misc changesReinUsesLisp2019-05-261-28/+108
| | | | | | | | | | | | 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.
* maxwell_to_vk: Initial implementationReinUsesLisp2019-03-041-3/+10
|
* vk_device: Abstract device handling into a classReinUsesLisp2019-02-131-0/+231
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).