Jeff Juliano
Jeff Juliano
Hi, I've encountered an error when trying to build mathematical on cygwin while using MATHEMATICAL_USE_SYSTEM_LASEM. The linker complains about undefined references to symbol names with the pattern lsm_dom_*. In the...
The way that vkcube's support for `VK_KHR_display` is implemented, vkcube fails when no direct-to-display `VkDisplayKHR` can be acquired on the `vkPhysicalDevice` that is sorted first in the list of physical...
The way that vkcube is structured today, the choice to use `VK_KHR_display` to drive a direct-to-display is a cmake option when configuring the build. ``` if(UNIX AND NOT APPLE) #...
By code inspection of terminator_CreateSharedSwapchainsKHR(), it appears that this function cannot possibly function as intended. Around here: https://github.com/KhronosGroup/Vulkan-Loader/blob/83cd92c725987857a84c871bd8bc11b249d239b1/loader/wsi.c#L2087 `icd_surface` is assigned from the first array member of `pCreateInfos`. Next is...
There are fields at the end of `struct VkIcdSurface` that appear to be write-once, never consumed. Are these dead fields that used to be meaningful, but have now become dead...
By code inspection of `terminator_CreateDisplayPlaneSurfaceKHR()`, it appears that this function may not function as intended when multiple ICDs that implement `icd_term->dispatch.CreateDisplayPlaneSurfaceKHR`. Around here: https://github.com/KhronosGroup/Vulkan-Loader/blob/438875314dc838d130098127c6e908798500fecc/loader/wsi.c#L2031 is code that loops over all...