Tim Glauert

Results 5 comments of Tim Glauert

Is there a vulkano call for this? Not able to get the tools onto the platform I am using.

The BestPractices validation layer is giving this warning: > UNASSIGNED-BestPractices-vkGetDisplayPlaneSupportedDisplaysKHR-properties-not-retrieved` validation warning: Validation Warning: [ UNASSIGNED-BestPractices-vkGetDisplayPlaneSupportedDisplaysKHR-properties-not-retrieved ] Object 0: handle = 0x55ee0f169b30, type = VK_OBJECT_TYPE_PHYSICAL_DEVICE; | MessageID = 0xe3d810d8 |...

It looks like this is a lifetime issue in my code. This code fails: ``` let displays = device.display_properties().expect("display properties"); for display in displays { ... device.display_plane_supported_displays(p_num).unwrap(); ``` Using an...

Finally got dump working and have attached the file of a failed run (before the fix I mentioned above). I have a solution to the immediate problem (the panic) but...

The code is trying to create a surface on each display, so it looks like the code after `vkCreateDisplayPlaneSurfaceKHR` is reading data for the second display. The final call to...