Revert changing buffer index locations
This appeases Metal again
This commit is contained in:
parent
9dc43d9502
commit
46f9e99b94
1 changed files with 6 additions and 6 deletions
|
@ -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:
|
||||
|
|
Reference in a new issue