-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generate indices for Mikktspace #8862
Conversation
Can we also get a generate_indices() function? For GPU-driven rendering or RT, assuming all meshes are indexed greatly simplifies things, so it makes sense to just generate an index buffer for meshes that are missing it for whatever reason. |
could do. i'd think an accessor for attributes that uses the |
Yeah I think either would be fine. Doesn't have to be in this PR, or any time soon. It's something we can solve when we move to GPU-driven rendering. |
# Objective mikktspace tangent generation requires mesh indices, and currently fails when they are not present. we can just generate them instead. ## Solution generate the indices.
Objective
mikktspace tangent generation requires mesh indices, and currently fails when they are not present. we can just generate them instead.
Solution
generate the indices.