forked from AcademySoftwareFoundation/MaterialX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport OpenPBR Surface to MaterialX 1.38.10 (AcademySoftwareFoundat…
…ion#2082) Backports only the minimal code necessary to render native OpenPBR surface in MaterialX in a way that has no visual impact on the existing shaders and pbr nodes present in 1.38. Status: - GLSL -> Fully functional - MSL -> Fully functional. Required only backporting the inversesqrt fix on top of the GLSL code. - OSL -> As functional as the 1.39 branch. Getting it fully functional requires OSL v1.14 features not yet released like Zeltner fuzz and compensating OrenNayar. I was not able to find any mention of a 82 deg color update on the OSL Schlick node though. - MDL -> Compiles and validates, but no updated visuals until an updated MDL library is available.
- Loading branch information
1 parent
9750509
commit ae9f1d7
Showing
51 changed files
with
2,162 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
release: | ||
name: Release Signing | ||
runs-on: ubuntu-latest | ||
env: | ||
RELEASE_TAG: ${{ github.ref_name }} | ||
permissions: | ||
contents: write | ||
id-token: write | ||
repository-projects: write | ||
|
||
steps: | ||
- name: Sync Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Create Archive Name | ||
run: echo "MATERIALX_ARCHIVE=MaterialX-${RELEASE_TAG//v}" >> $GITHUB_ENV | ||
|
||
- name: Generate Archives | ||
run: | | ||
git archive --prefix ${MATERIALX_ARCHIVE}/ --output ${MATERIALX_ARCHIVE}.zip ${RELEASE_TAG} | ||
git archive --prefix ${MATERIALX_ARCHIVE}/ --output ${MATERIALX_ARCHIVE}.tar.gz ${RELEASE_TAG} | ||
- name: Sign and Upload Archives | ||
uses: sigstore/[email protected] | ||
with: | ||
inputs: | | ||
${{ env.MATERIALX_ARCHIVE }}.zip | ||
${{ env.MATERIALX_ARCHIVE }}.tar.gz | ||
upload-signing-artifacts: true | ||
release-signing-artifacts: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.