aboutsummaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2023-02-24vulkaninfo: Fix wrong stripping in flag stringsCharles Giessen
The QUEUE_OPTICAL_FLOW_BIT_NV was getting the 'V' cut off of it, this commit fixes that so that it isn't being removed, as well as making the output more consistent.
2023-02-22mockicd: Add Support for testing Ray Tracingspencer-lunarg
2023-02-20build: Update to header 1.3.241Mike Schuchardt
- Update known-good - Tweak generate_vulkan_wrapper.py to ignore sci header - Generate source
2023-02-20mockicd: Add more Memory Typesspencer-lunarg
2023-02-17mockicd: Add Protected Queuespencer-lunarg
2023-02-17mockicd: Fix and finish vkGetPhysicalDeviceProperties2KHRspencer-lunarg
2023-02-17mockicd: Add non-zero timestampValidBitsspencer-lunarg
2023-02-16mockicd: Add more PhysicalDevice functions not in profilesspencer-lunarg
2023-01-27build: Update to header 1.3.240Mike Schuchardt
- Update known-good - Generate source
2023-01-27Update MoltenVK known good tagRichard S. Wright Jr
2023-01-20build: Update to header 1.3.239Mike Schuchardt
- Update known-good - Generate source
2023-01-16github: Use main instead of masterJuan Ramos
closes #729
2023-01-10build: Update vulkan headersJuan Ramos
- Vulkan::Registry was removed - vk_sdk_platform.h is deprecated NOTE: Need to update loader due to shared dependency.
2023-01-03build: Update to header 1.3.238Mike Schuchardt
- Update known-good - Generate source
2022-12-09Updated to latest known good MoltenVKRichard S. Wright Jr
2022-12-08build: Update to header 1.3.237Mike Schuchardt
- Update known-good - Generate source
2022-12-05ci: Speed up MacOS buildsJuan Ramos
Caches update_deps.py dependencies. In particular MoltenVK since it's a huge dependency.
2022-12-01build: Update to header 1.3.236Mike Schuchardt
- Update known-good - Generate source
2022-11-28icd: Set MockICD driver version to header versionspencer-lunarg
2022-11-17build: Update to header 1.3.235Mike Schuchardt
- Update known-good - Generate source
2022-11-10build: Update to header 1.3.234Mike Schuchardt
- Update known-good - Generate source
2022-11-03build: Update to header 1.3.233Mike Schuchardt
- Update known-good - Generate source
2022-11-02vulkaninfo: Fix VkShaderStageFlagBits expansionMike Schuchardt
Fix bug where SHADER_STAGE_ALL_GRAPHICS and SHADER_STAGE_ALL were showing up in the list of set bits for VkPhysicalDeviceSubgroupProperties::supportedStages. When expanding a FlagBits value we should only consider the single-bit options.
2022-10-28vulkaninfo: Improve array printingCharles Giessen
Make the autogen use for loops instead of outputing printers for each array element, since its needlessly verbose. Make UUID and LUID printers use operator<< instead of to_string. This simplifies the logic and makes sure that the array is printed correctly everywhere, rather than requiring calling code to use to_string_XX() where needed.
2022-10-27build: Update to header 1.3.232Mike Schuchardt
- Update known-good - Generate source
2022-10-20Updated MoltenVK to 1.2.0Richard S. Wright Jr
2022-10-13build: Update to header 1.3.231Mike Schuchardt
- Update known-good - Generate source
2022-09-29build: Update to header 1.3.230Mike Schuchardt
- Update known-good - Generate source
2022-09-22build: Update to header 1.3.229Mike Schuchardt
- Update known-good - Generate source
2022-09-15build: Update to header 1.3.228Mike Schuchardt
- Update known-good - Generate source
2022-09-08build: Update to header 1.3.227Mike Schuchardt
- Update known-good - Generate source
2022-09-01build: Update to header 1.3.226Mike Schuchardt
- Update known-good - Generate source
2022-08-18build: Update to header 1.3.225Mike Schuchardt
- Update known-good - VkVideoProfileKHR -> VkVideoProfileInfoKHR - VkVideoProfilesKHR -> VkVideoProfileListInfoKHR - Generate source
2022-08-17Updated known good version of MoltenVKRichard S. Wright Jr
2022-08-04build: Update to header 1.3.224Mike Schuchardt
- Update known-good - Generate source
2022-07-28build: Update to header 1.3.223Mike Schuchardt
- Update known-good - Generate source
2022-07-21build: Update to header 1.3.222Mike Schuchardt
- Update known-good - Generate source
2022-07-14build: Update to header 1.3.221Mike Schuchardt
- Update known-good - Generate source
2022-07-07build: Update to header 1.3.220Mike Schuchardt
- Update known-good - Generate source
2022-06-30build: Update to header 1.3.219Mike Schuchardt
- Update mock_icd generator create function detection to only look for Create/Allocate at beginning of function name - Update known-good - Generate source
2022-06-16build: Update to header 1.3.218Mike Schuchardt
- Update known-good - Generate source
2022-06-13build: Update to header 1.3.217Mike Schuchardt
- Update known-good - Generate source
2022-06-13Updated MoltenVK known good to 1.1.10Richard S. Wright Jr
2022-06-02build: Update to header 1.3.216Mike Schuchardt
- Update known-good - Generate source
2022-05-24build: Update to header 1.3.215Mike Schuchardt
- Update known-good - Generate source
2022-05-17build: Update to header 1.3.214Mike Schuchardt
- Update known-good - Generate source
2022-05-11build: Update to header 1.3.213Mike Schuchardt
- Update known-good - Generate source
2022-04-21build: Update to header 1.3.212Mike Schuchardt
- Update known-good - Generate source
2022-04-14Updated MoltenVK tagRichard S. Wright Jr
Now at latest known good release
2022-04-13mock_icd: Remove fallthroughs in switchesCharles Giessen
They cause unecessary warnings in some compilers and are not necessary for the code to function. Replaced with if statements.