diff options
| author | Brad Linden <brad@lindenlab.com> | 2024-05-06 17:33:46 -0700 | 
|---|---|---|
| committer | Brad Linden <brad@lindenlab.com> | 2024-05-06 17:33:46 -0700 | 
| commit | f79548ec68ebcef8f8f83705b65fd59da43c3e26 (patch) | |
| tree | e8210461eded7f55473d047f21d0320dc243dad7 | |
| parent | 84827a7cb8d4b7a58309f98c7d4df4cfeb173935 (diff) | |
| parent | 10aa7f4254fd04c24f15f507188705146f92ee60 (diff) | |
Merge remote-tracking branch 'origin/main' into project/gltf_development
| -rw-r--r-- | .github/workflows/build.yaml | 27 | ||||
| -rwxr-xr-x | build.sh | 1 | ||||
| -rw-r--r-- | indra/llprimitive/llgltfmaterial.h | 9 | ||||
| -rw-r--r-- | indra/llprimitive/tests/llgltfmaterial_test.cpp | 2 | 
4 files changed, 27 insertions, 12 deletions
| diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 44f32c1c5d..4785273b78 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,7 +5,7 @@ on:    pull_request:    push:      branches: ["main", "release/*", "project/*"] -    tags: ["Second_Life_*"] +    tags: ["Second_Life*"]  jobs:    build: @@ -176,16 +176,22 @@ jobs:            # seen before, so numerous tests don't know about it.            [[ "$arch" == "MINGW6" ]] && arch=CYGWIN            export AUTOBUILD="$(which autobuild)" -          # Build with a tag like "Second_Life_Project_Shiny#abcdef0" to get a -          # viewer channel "Second Life Project Shiny" (ignoring "#hash", -          # needed to disambiguate tags). -          if [[ "$GITHUB_REF_TYPE" == "tag" && "${GITHUB_REF_NAME:0:12}" == "Second_Life_" ]] -          then viewer_channel="${GITHUB_REF_NAME%#*}" -               export viewer_channel="${viewer_channel//_/ }" -          else export viewer_channel="Second Life Test" + +          # determine the viewer channel from the branch name +          branch=$AUTOBUILD_VCS_BRANCH +          IFS='/' read -ra ba <<< $branch +          prefix=${ba[0]} +          if [ "$prefix" == "project" ]; then +              IFS='_' read -ra prj <<< "${ba[1]}" +              # uppercase first letter of each word +              export viewer_channel="Second Life Project ${prj[*]^}" +          elif  [[ "$prefix" == "release" || "$prefix" == "main" ]]; +          then +              export viewer_channel="Second Life Release" +          else +              export viewer_channel="Second Life Test"            fi            echo "viewer_channel=$viewer_channel" >> "$GITHUB_OUTPUT" -            # On windows we need to point the build to the correct python            # as neither CMake's FindPython nor our custom Python.cmake module            # will resolve the correct interpreter location. @@ -354,7 +360,8 @@ jobs:    release:      needs: [build, sign-and-package-windows, sign-and-package-mac]      runs-on: ubuntu-latest -    if: github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life_') +      # Build with a tag like "Second_Life#abcdef0" to generate a release page (used for builds we are planning to deploy). +    if: github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life')      steps:        - uses: actions/download-artifact@v4          with: @@ -178,6 +178,7 @@ pre_build()      "$autobuild" configure --quiet -c $variant \       ${eval_autobuild_configure_parameters:---} \ +     -DLL_TESTS:BOOL=ON \       -DPACKAGE:BOOL=ON \       -DHAVOK:BOOL="$HAVOK" \       -DRELEASE_CRASH_REPORTING:BOOL="$RELEASE_CRASH_REPORTING" \ diff --git a/indra/llprimitive/llgltfmaterial.h b/indra/llprimitive/llgltfmaterial.h index 9b50d16884..90f1ecfa8f 100644 --- a/indra/llprimitive/llgltfmaterial.h +++ b/indra/llprimitive/llgltfmaterial.h @@ -120,6 +120,14 @@ public:      //       heightmaps cannot currently be described as finite enclosed      //       volumes.      // See also LLPanelRegionTerrainInfo::validateMaterials +    bool mDoubleSided = false; + + +    // These fields are local to viewer and are a part of local bitmap support +    typedef std::map<LLUUID, LLUUID> local_tex_map_t; +    local_tex_map_t                  mTrackingIdToLocalTexture; + +public:      // get a UUID based on a hash of this LLGLTFMaterial      LLUUID getHash() const; @@ -220,7 +228,6 @@ public:      bool hasLocalTextures() { return !mTrackingIdToLocalTexture.empty(); }      virtual bool replaceLocalTexture(const LLUUID& tracking_id, const LLUUID &old_id, const LLUUID& new_id);      virtual void updateTextureTracking(); -  protected:      static LLVector2 vec2FromJson(const std::map<std::string, tinygltf::Value>& object, const char* key, const LLVector2& default_value);      static F32 floatFromJson(const std::map<std::string, tinygltf::Value>& object, const char* key, const F32 default_value); diff --git a/indra/llprimitive/tests/llgltfmaterial_test.cpp b/indra/llprimitive/tests/llgltfmaterial_test.cpp index 88b6fae3a7..b56c9ab4f5 100644 --- a/indra/llprimitive/tests/llgltfmaterial_test.cpp +++ b/indra/llprimitive/tests/llgltfmaterial_test.cpp @@ -143,7 +143,7 @@ namespace tut  #if LL_WINDOWS          // If any fields are added/changed, these tests should be updated (consider also updating ASSET_VERSION in LLGLTFMaterial)          // This test result will vary between compilers, so only test a single platform -        ensure_equals("fields supported for GLTF (sizeof check)", sizeof(LLGLTFMaterial), 216); +        ensure_equals("fields supported for GLTF (sizeof check)", sizeof(LLGLTFMaterial), 224);  #endif  #endif          ensure_equals("LLGLTFMaterial texture info count", (U32)LLGLTFMaterial::GLTF_TEXTURE_INFO_COUNT, 4); | 
