Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add anisotropy tests to render-fidelity-tests (and update Babylon + Filament to latest) #4535

Merged
merged 31 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
70862b6
init submodule for glTF-Sample-Assets.
bhouston Oct 24, 2023
37f5faa
fix left over popd in fetch khronos gltf-smaples.
bhouston Oct 24, 2023
e8ead7e
remove tests from config.json that no longer have corresponding asset…
bhouston Oct 24, 2023
fb17048
upgrade babylon + filament, check in their latest goldens for new ani…
bhouston Oct 24, 2023
7390b25
update config.json with the new anisotropy tests.
bhouston Oct 24, 2023
17e936e
add more time for tests.
bhouston Oct 25, 2023
33d17e2
add more gltf tests along with goldens for filament,babylon and model…
bhouston Oct 25, 2023
b89fa9a
using checkout with submodule support.
bhouston Oct 25, 2023
bc5c08f
Merge branch 'additional-tests' of git@github.com:bhouston/model-view…
bhouston Oct 25, 2023
9647901
using checkout with submodule support.
bhouston Oct 25, 2023
a11d8cf
update goldens for model-viewer + filament for khronos-TextureTransfo…
bhouston Oct 25, 2023
c850c59
update goldens for model-viewer + filament for khronos-TextureTransfo…
bhouston Oct 25, 2023
ed9844e
add more goldens for anisotropy from gltf-sample-viewer and three-gpu…
bhouston Oct 25, 2023
bce8a03
add more goldens for anisotropy from gltf-sample-viewer and three-gpu…
bhouston Oct 25, 2023
2ed0708
exclude a few renderers for now to get the PR accepted.
bhouston Oct 25, 2023
e8e0be2
exclude a few renderers for now to get the PR accepted.
bhouston Oct 25, 2023
66ba502
add gltf-sample viewer goldens for new tests.
bhouston Oct 25, 2023
47167db
add goldens for AnisotropyDiscTest
bhouston Oct 25, 2023
342a9e2
remove barn lamp test for now.
bhouston Oct 25, 2023
a8ffc1d
remove blank golden image.
bhouston Oct 26, 2023
26468e2
remove barn lamp test for now.
bhouston Oct 25, 2023
b04a230
exclude three-gpu-pathtracer from rotation test.
bhouston Oct 26, 2023
41b8d8d
exclude three-gpu-pathtracer from rotation test.
bhouston Oct 26, 2023
89add3e
Merge remote-tracking branch 'origin/master' into additional-tests
bhouston Oct 26, 2023
d6a589b
Merge remote-tracking branch 'origin/master' into additional-tests
bhouston Oct 27, 2023
648c5fc
remove failing test for now.
bhouston Oct 27, 2023
7cd01be
Merge branch 'even-more-tests' into additional-tests
bhouston Oct 27, 2023
6a66cdd
Merge branch 'master' into additional-tests
bhouston Oct 30, 2023
5ee586a
add missing anisotropy goldens, and re-add barn lamp with model-viewe…
bhouston Oct 30, 2023
c684bb8
ensure goldens tests are excluded if renderer is excluded.
bhouston Oct 30, 2023
028c52f
remove blank image.
bhouston Nov 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
init submodule for glTF-Sample-Assets.
  • Loading branch information
bhouston committed Oct 24, 2023
commit 70862b6d9d05bb8606239c4087e60bb0062d046f
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "packages/shared-assets/models/glTF-Sample-Assets"]
path = packages/shared-assets/models/glTF-Sample-Assets
url = git@github.com:KhronosGroup/glTF-Sample-Assets
1 change: 1 addition & 0 deletions packages/shared-assets/models/glTF-Sample-Assets
Submodule glTF-Sample-Assets added at 3a1531
22 changes: 1 addition & 21 deletions packages/shared-assets/scripts/fetch-khronos-gltf-samples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,10 @@
# This script is responsible for cloning and / or updating the local repository
# of Khronos glTF sample models

REPO_URL=https://github.com/KhronosGroup/glTF-Sample-Models.git
CLONE_PATH=$(dirname $0)/../models/glTF-Sample-Models

if [ ! -d "$CLONE_PATH/.git" ]; then
git clone --depth=1 $REPO_URL $CLONE_PATH
fi

pushd $CLONE_PATH
ORIGIN_URL=`git config remote.origin.url`;

echo '🐶 Fetching Khronos glTF sample models.
🐕 WARNING: This might result in hundreds of megabytes of data usage!'

if [ -z "$ORIGIN_URL" ]; then
git remote add origin $REPO_URL
else
if [ ! "$REPO_URL" == "$ORIGIN_URL" ]; then
git remote rm origin
git remote add origin $REPO_URL
fi
fi

git fetch origin
git reset --hard origin/master
git submodule update --init --recursive

echo '🎾 Sample models are now available'

Expand Down