diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-04-08 13:51:21 -0400 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-04-08 13:51:21 -0400 |
commit | c8499b7f01ac3f46f0764ea8195c30a4a2ec27a8 (patch) | |
tree | f1175d186cbdd87c0afe13498ba01d46ae56bf92 /indra/newview/gltf/asset.h | |
parent | 3c9bb9bfe5aa178141c381cfac066fd31a7252b4 (diff) |
GLTF WIP. Still working on getting transforms working proper and need to figure out our indices.
Diffstat (limited to 'indra/newview/gltf/asset.h')
-rw-r--r-- | indra/newview/gltf/asset.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/gltf/asset.h b/indra/newview/gltf/asset.h index 27821659db..e70fffa986 100644 --- a/indra/newview/gltf/asset.h +++ b/indra/newview/gltf/asset.h @@ -286,6 +286,7 @@ namespace LL void serialize(boost::json::object& dst) const; }; + // Image is for images that we want to load for the given asset. This acts as an interface into the viewer's texture pipe. class Image { public: @@ -301,6 +302,8 @@ namespace LL S32 mBits = -1; S32 mPixelType = -1; + bool mLoadIntoTexturePipe = false; + LLPointer<LLViewerFetchedTexture> mTexture; const Image& operator=(const Value& src); |