diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-05-05 01:23:24 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-05-05 01:23:24 +0000 |
| commit | 84a59cf98d166dfc36b4c0c68933cddb2b161af7 (patch) | |
| tree | ab1119fb426114e67f33b5dcf46c89a44b74d999 /AssetLoader/interface | |
| parent | Fixed a couple of Mac build problems (diff) | |
| download | DiligentTools-84a59cf98d166dfc36b4c0c68933cddb2b161af7.tar.gz DiligentTools-84a59cf98d166dfc36b4c0c68933cddb2b161af7.zip | |
Fixed variable naming problem causing Linux build errors
Diffstat (limited to 'AssetLoader/interface')
| -rw-r--r-- | AssetLoader/interface/GLTFLoader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AssetLoader/interface/GLTFLoader.h b/AssetLoader/interface/GLTFLoader.h index fce68a6..24356bf 100644 --- a/AssetLoader/interface/GLTFLoader.h +++ b/AssetLoader/interface/GLTFLoader.h @@ -169,8 +169,8 @@ struct Node Uint32 Index; std::vector<std::unique_ptr<Node>> Children; float4x4 Matrix; - std::unique_ptr<Mesh> Mesh; - Skin* Skin = nullptr; + std::unique_ptr<Mesh> _Mesh; + Skin* _Skin = nullptr; Int32 SkinIndex = -1; float3 Translation; float3 Scale = float3(1.0f, 1.0f, 1.0f); |
