Vulkan-Samples
Vulkan-Samples copied to clipboard
One stop solution for all Vulkan samples
## Description This PR is currently built on top of #907 and #901 and should not be merged until they're approved and merged. Migrate the code common to the objects...
I tried to run the hello_triangle sample on my laptop but the window stayed black and did not draw a triangle. After poking around in gdb I eventually concluded that...
As part of our CI we run clang-format to ensure that code is properly formatted. Sadly IDEs use different clang-format versions. Visual Stuido 2022 e.g. uses an newer version than...
## Description This PR sets the color blend equation state as required per the spec. This fixes a validation error in the sample that shows up with the latest SDK....
## Description Fix the declaration of the compute_buffer in a loop as an r-value reference to a simple reference. Fixes #913 ## General Checklist: Please ensure the following points are...
several of the flags available for batch mode (`--tag`, `--category`) are marked with the `ManyValues` enum, but any attempt to start an application with multiple values for these fails at...
## Description A valid render pass was required when creating a graphics pipeline. "If the dynamicRendering feature is not enabled and the pipeline requires pre-rasterization shader state, fragment shader state,...
## Description The attachments were being created with a format that didn't match the corresponding VkAttachmentDescription in renderPass causing a validation error. ## General Checklist: Please ensure the following points...
## Description Validation was throwing lots of errors about blending being enabled but the color format not being blendable in the timestamp_queries samples. Moved existing code for handling this into...
## Description The private inheritance in HPPVulkanException was preventing the top-level exception handler from catching it as a std::exception. This causes batch mode to abort whenever it sees an unsupported...