Having the components of an obj file (the separated values for the texture, normal and vertex having their own index). Is it possible to send the texture, vertex and normal values to the buffer separately?
Asked
Active
Viewed 436 times
1 Answers
2
Direct3D doesn't directly support independently indexed vertex components. You can set up a vertex buffer containing just the indices from the .obj file and look the individual components up yourself from a StructuredBuffer in your vertex shader though.

mattnewport
- 13,728
- 2
- 35
- 39