You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triangle fans are used to fill polygons with the Even/Odd technic, it's not supported by moltenVK.
A quick fix has be apply to disable Even/Odd on macOS.
The workaround is to bind the IBO in the _poly_fill() method and produce triangle list indices as the fan would output with the contour.
The text was updated successfully, but these errors were encountered:
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN specifies a series of connected triangle primitives with all triangles sharing a common vertex. If the VK_KHR_portability_subset extension is enabled, and VkPhysicalDevicePortabilitySubsetFeaturesKHR::triangleFans is VK_FALSE, then triangle fans are not supported by the implementation, and VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN must not be used.
Triangle fans are used to fill polygons with the Even/Odd technic, it's not supported by moltenVK.
A quick fix has be apply to disable Even/Odd on macOS.
The workaround is to bind the IBO in the _poly_fill() method and produce triangle list indices as the fan would output with the contour.
The text was updated successfully, but these errors were encountered: