diff options
author | cosmic-linden <111533034+cosmic-linden@users.noreply.github.com> | 2024-03-20 13:41:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 13:41:52 -0700 |
commit | 3afb104199cb31de8e5f02e51a3c9f69e58ee248 (patch) | |
tree | dad58072fafea7cedafc972ae71980e2b99a4b5a /indra/llprimitive | |
parent | 93231d4eed69f7b869d4d10855a7ce6809b4a033 (diff) | |
parent | 294eaa3c57d97c74074330e1c4ac4d2903619757 (diff) |
Merge pull request #1024 from secondlife/vi-83
secondlife/viewer-issues#83: Disallow alpha blend/double sided from PBR terrain
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llgltfmaterial.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/llprimitive/llgltfmaterial.h b/indra/llprimitive/llgltfmaterial.h index 02f62fb08c..d14ae6970b 100644 --- a/indra/llprimitive/llgltfmaterial.h +++ b/indra/llprimitive/llgltfmaterial.h @@ -129,6 +129,17 @@ public: bool mOverrideDoubleSided = false; bool mOverrideAlphaMode = false; + // *TODO: If/when we implement additional GLTF extensions, they may not be + // compatible with our GLTF terrain implementation. We may want to disallow + // materials with some features from being set on terrain, if their + // implementation on terrain is not compliant with the spec: + // - KHR_materials_transmission: Probably OK? + // - KHR_materials_ior: Probably OK? + // - KHR_materials_volume: Likely incompatible, as our terrain + // heightmaps cannot currently be described as finite enclosed + // volumes. + // See also LLPanelRegionTerrainInfo::validateMaterials + // get a UUID based on a hash of this LLGLTFMaterial LLUUID getHash() const; |