Skip to content

Commit

Permalink
Update to Magnum with new MaterialTools and improved glTF import/expo…
Browse files Browse the repository at this point in the history
…rt. (#2015)
  • Loading branch information
mosra authored Feb 24, 2023
1 parent 8648a23 commit c7f4d13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/deps/corrade
Submodule corrade updated 58 files
+4 −4 doc/building-corrade.dox
+23 −7 doc/corrade-changelog.dox
+1 −1 doc/corrade-cmake.dox
+15 −8 doc/corrade-developers.dox
+2 −0 doc/cpu.dot
+5 −1 doc/snippets/CMakeLists.txt
+1 −1 doc/snippets/Containers.cpp
+8 −0 doc/snippets/Corrade.cpp
+11 −0 doc/snippets/testsuite-compare-string.ansi
+66 −0 doc/snippets/testsuite-compare-string.cpp
+1 −1 modules/FindCorrade.cmake
+11 −1 modules/UseCorrade.cmake
+21 −8 package/archlinux/PKGBUILD-clang
+21 −8 package/archlinux/PKGBUILD-clang-libc++
+12 −21 src/Corrade/Containers/BitArray.cpp
+36 −2 src/Corrade/Containers/BitArray.h
+390 −0 src/Corrade/Containers/BitArrayView.cpp
+113 −4 src/Corrade/Containers/BitArrayView.h
+1 −2 src/Corrade/Containers/GrowableArray.h
+15 −0 src/Corrade/Containers/Optional.h
+15 −37 src/Corrade/Containers/StridedBitArrayView.h
+6 −2 src/Corrade/Containers/String.h
+26 −6 src/Corrade/Containers/StringView.cpp
+10 −0 src/Corrade/Containers/Test/ArrayTupleTest.cpp
+52 −1 src/Corrade/Containers/Test/BitArrayTest.cpp
+515 −0 src/Corrade/Containers/Test/BitArrayViewBenchmark.cpp
+473 −6 src/Corrade/Containers/Test/BitArrayViewTest.cpp
+142 −0 src/Corrade/Containers/Test/BitArrayViewTest.h
+2 −1 src/Corrade/Containers/Test/CMakeLists.txt
+4 −0 src/Corrade/Containers/Test/EnumSetTest.cpp
+7 −3 src/Corrade/Containers/Test/GrowableArrayTest.cpp
+10 −0 src/Corrade/Containers/Test/IterableTest.cpp
+13 −0 src/Corrade/Containers/Test/PointerTest.cpp
+20 −53 src/Corrade/Containers/Test/StridedBitArrayViewTest.cpp
+4 −0 src/Corrade/Containers/Test/StridedDimensionsTest.cpp
+33 −2 src/Corrade/Containers/Test/StringTest.cpp
+23 −4 src/Corrade/Corrade.h
+1 −0 src/Corrade/Cpu.cpp
+199 −90 src/Corrade/Cpu.h
+62 −4 src/Corrade/Test/CpuTest.cpp
+41 −3 src/Corrade/Test/TargetTest.cpp
+125 −0 src/Corrade/TestSuite/Compare/Implementation/Diff.h
+129 −0 src/Corrade/TestSuite/Compare/String.cpp
+48 −4 src/Corrade/TestSuite/Compare/String.h
+1 −0 src/Corrade/TestSuite/Compare/Test/CMakeLists.txt
+146 −0 src/Corrade/TestSuite/Compare/Test/DiffTest.cpp
+200 −0 src/Corrade/TestSuite/Compare/Test/StringTest.cpp
+2 −2 src/Corrade/TestSuite/Tester.h
+1 −0 src/Corrade/Utility/CMakeLists.txt
+62 −8 src/Corrade/Utility/Debug.cpp
+39 −18 src/Corrade/Utility/Debug.h
+7 −7 src/Corrade/Utility/IntrinsicsAvx.h
+28 −1 src/Corrade/Utility/Json.cpp
+17 −1 src/Corrade/Utility/Json.h
+157 −22 src/Corrade/Utility/Test/DebugTest.cpp
+71 −11 src/Corrade/Utility/Test/JsonTest.cpp
+1 −1 src/Corrade/Utility/visibility.h
+7 −1 src/Corrade/configure.h.cmake
2 changes: 1 addition & 1 deletion src/deps/magnum
Submodule magnum updated 117 files
2 changes: 1 addition & 1 deletion src/deps/magnum-plugins
Submodule magnum-plugins updated 30 files
+1 −1 package/ci/android-x86.sh
+1 −1 package/ci/appveyor-desktop-mingw.bat
+1 −1 package/ci/appveyor-desktop.bat
+1 −1 package/ci/emscripten.sh
+1 −1 package/ci/ios-simulator.sh
+1 −1 package/ci/unix-desktop.sh
+1 −1 src/MagnumPlugins/GlslangShaderConverter/GlslangConverter.cpp
+211 −42 src/MagnumPlugins/GltfImporter/GltfImporter.cpp
+10 −6 src/MagnumPlugins/GltfImporter/GltfImporter.h
+78 −39 src/MagnumPlugins/GltfImporter/Test/GltfImporterTest.cpp
+42 −7 src/MagnumPlugins/GltfImporter/Test/scene-custom-fields.gltf
+713 −182 src/MagnumPlugins/GltfSceneConverter/GltfSceneConverter.cpp
+81 −5 src/MagnumPlugins/GltfSceneConverter/GltfSceneConverter.h
+13 −1 src/MagnumPlugins/GltfSceneConverter/Test/CMakeLists.txt
+740 −118 src/MagnumPlugins/GltfSceneConverter/Test/GltfSceneConverterTest.cpp
+41 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-clearcoat-default-texture-swizzle.gltf
+41 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-clearcoat-gltf-defaults-kept.gltf
+38 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-clearcoat-gltf-defaults-omitted.gltf
+18 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-clearcoat-magnum-defaults.gltf
+71 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-clearcoat.gltf
+40 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-custom-no-transform-explicit-used-extensions.gltf
+92 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-custom-skipped-3d.gltf
+61 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-custom-skipped.gltf
+156 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-custom.gltf
+50 −0 src/MagnumPlugins/GltfSceneConverter/Test/material-unused-attributes-layers.gltf
+ src/MagnumPlugins/GltfSceneConverter/Test/texcoord-flip-floats-material-custom-material-attribute.glb
+3 −3 src/MagnumPlugins/OpenExrImporter/OpenExrImporter.cpp
+11 −10 src/MagnumPlugins/UfbxImporter/Test/UfbxImporterTest.cpp
+8 −6 src/MagnumPlugins/UfbxImporter/UfbxImporter.cpp
+2 −3 src/MagnumPlugins/UfbxImporter/UfbxImporter.h

0 comments on commit c7f4d13

Please sign in to comment.