vulkan_test_applications
vulkan_test_applications copied to clipboard
By default, Ubuntu or Debian based "apt" or "apt-get" system installs recommended but not suggested packages . By passing "--no-install-recommends" option, the user lets apt-get know not to consider recommended...
Some sample applications (e.g. timeline_semaphore_simple) crash on exit. It looks like part of what is going on is that the main loop has no exit condition, but changing this to...
The device creation in `CreateDeviceForSwapchain` seems to assume that the extension offering VkPhysicalDeviceProtectedMemoryFeatures is always supported: https://github.com/google/vulkan_test_applications/blob/master/vulkan_helpers/helper_functions.cpp#L643-L651 I think the support for this extension should be queried with `vkGetPhysicalDeviceFeatures2`, and...
Based on a Gapid trace of the `passthrough` sample, it looks like the vertex buffers are destroyed immediately after recording the command buffer, before submitting to the queue. They should...
This happens in both mid-execution and non-mid-execution captures, even with dead code elimination turned off entirely, so I suspect it is a race in the commands executed by the application.