Using obj file format for directx 11

466 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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.