We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e4b30 commit a3485ceCopy full SHA for a3485ce
AssetLoader/interface/GLTFLoader.hpp
@@ -936,6 +936,11 @@ struct Model
936
0;
937
}
938
939
+ Uint32 GetVertexPoolIndex() const
940
+ {
941
+ return VertexData.PoolId;
942
+ }
943
+
944
struct ImageData
945
{
946
int Width = 0;
@@ -1047,7 +1052,7 @@ struct Model
1047
1052
std::vector<Uint32> Strides;
1048
1053
std::vector<RefCntAutoPtr<IBuffer>> Buffers;
1049
1054
RefCntAutoPtr<IVertexPoolAllocation> pAllocation;
1050
- Uint32 PoolId = 0; // Vertex pool allocation Id
1055
+ Uint32 PoolId = 0; // Vertex pool index
1051
1056
Uint32 EnabledAttributeFlags = 0;
1057
};
1058
VertexDataInfo VertexData;
0 commit comments