diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2022-06-24 15:22:27 +0000 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-06-24 15:22:27 +0000 |
commit | 14cba35bbce3f2103d34e02eb312981cb4789a0c (patch) | |
tree | bc4c162304eb7498cbd15664146142c4ce3131de /indra/llprimitive/llgltfloader.cpp | |
parent | a68b6087deb68a824c2b9e8ccb1111c6c8b70045 (diff) | |
parent | a6774ca4dd3469fe1c98a53a59153c6e2db76940 (diff) |
Merged in brad/unbreak-mac-build (pull request #1034)
Unbreak DRTVWR-559 mac build
Diffstat (limited to 'indra/llprimitive/llgltfloader.cpp')
-rw-r--r-- | indra/llprimitive/llgltfloader.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llprimitive/llgltfloader.cpp b/indra/llprimitive/llgltfloader.cpp index 3ec11f70c6..6041c9c273 100644 --- a/indra/llprimitive/llgltfloader.cpp +++ b/indra/llprimitive/llgltfloader.cpp @@ -24,7 +24,7 @@ * $/LicenseInfo$ */ -#include "LLGLTFLoader.h" +#include "llgltfloader.h" // Import & define single-header gltf import/export lib #define TINYGLTF_IMPLEMENTATION @@ -43,7 +43,7 @@ // Additionally, disable inclusion of STB header files entirely with // TINYGLTF_NO_INCLUDE_STB_IMAGE // TINYGLTF_NO_INCLUDE_STB_IMAGE_WRITE -#include "tinygltf\tiny_gltf.h" +#include "tinygltf/tiny_gltf.h" // TODO: includes inherited from dae loader. Validate / prune @@ -68,7 +68,6 @@ static const std::string lod_suffix[LLModel::NUM_LODS] = "_PHYS", }; -const U32 LIMIT_MATERIALS_OUTPUT = 12; LLGLTFLoader::LLGLTFLoader(std::string filename, S32 lod, @@ -94,7 +93,6 @@ LLGLTFLoader::LLGLTFLoader(std::string filename, jointsFromNodes, jointAliasMap, maxJointsPerMesh ), - mGeneratedModelLimit(modelLimit), //mPreprocessGLTF(preprocess), mMeshesLoaded(false), mMaterialsLoaded(false) |