Andrew Cox - LunarG
Andrew Cox - LunarG
> Are you suggesting a new vulkan layer which adds a frame counter overlay? Apologies, I have updated the title to reflect my intent. The reason for doing it in...
These are specifically flags/masks that don't have an enum defining the set of possible flag values: they are mostly (all?) raw UINT8 and UINT32 in DX12. For example, the masks...
> 2\. Going forward, it might make sense to convert this to a C interface if this library is going to be released in a compiled version for other usage...
I think there would have to be documentation edits to let users know how to turn it on: https://github.com/LunarG/gfxreconstruct/blob/dev/USAGE_desktop.md https://github.com/LunarG/gfxreconstruct/blob/dev/USAGE_android.md It seems to always be enabled currently, no? The best...
Hi Jacob, thank you for another useful feature! :) When you fix the conflicts, would it be possible to back off the 3412068 merge commit, rebase your changes on the...
I rebased it on latest dev so it can be merged and think it is ready.
Witth this PR landed and #1362 too, much of the remaining ToString code going back to the ToAscii tool may turn dead and be reapable. Check out and maybe other...
> Or is this actually a P1 because the values could be very large and unrepresentable in JSON legally? The JSON can hold it, and a Python number in a...
Note for the fix: ``` diff --git a/framework/generated/vulkan_generators/vulkan_ascii_consumer_body_generator.py b/framework/generated/vulkan_generators/vulkan_ascii_consumer_body_generator.py index 1385538..d16a66a 100644 --- a/framework/generated/vulkan_generators/vulkan_ascii_consumer_body_generator.py +++ b/framework/generated/vulkan_generators/vulkan_ascii_consumer_body_generator.py @@ -170,6 +170,8 @@ class VulkanAsciiConsumerBodyGenerator(BaseGenerator): # Handle function return value if not 'void'...
> Recapture doesn't work. Yes, when I wrote "recapture them" in issue #1090 I meant repeat the capture from the application. My mistake for not spotting that I'd used a...