Archived
1
Fork 0

Revert changing buffer index locations

This appeases Metal again
This commit is contained in:
Joshua Goins 2022-03-06 17:23:01 -05:00
parent 9dc43d9502
commit 46f9e99b94

View file

@ -6,12 +6,12 @@
class Material;
constexpr int position_buffer_index = 0;
constexpr int normal_buffer_index = 1;
constexpr int texcoord_buffer_index = 2;
constexpr int tangent_buffer_index = 3;
constexpr int bitangent_buffer_index = 4;
constexpr int bone_buffer_index = 5;
constexpr int position_buffer_index = 5;
constexpr int normal_buffer_index = 6;
constexpr int texcoord_buffer_index = 7;
constexpr int tangent_buffer_index = 8;
constexpr int bitangent_buffer_index = 9;
constexpr int bone_buffer_index = 10;
class MaterialCompiler {
public: