Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upLimit the number of used vertex attributes to 16 #2794
Closed
Labels
Comments
|
Apparently, we are doing good here. It was a problem with Szeged fork. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some platforms (e.g. Vulkan on Intel) have a limit of 16 vertex attributes that we have to respect. Currently,
cs_border_segmentshader uses 17 attributes. We need to either combine some of them into fewer ones, or avoid including some of the unused ones, plus put up an assertion to not exceed the limit again. Also see szeged#180