├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── CREDITS.md ├── README.md ├── doc ├── building-plugins.dox ├── changelog-plugins-old.dox ├── changelog-plugins.dox ├── cmake-plugins.dox ├── credits.dox ├── custom-buildsystems-plugins-order.dot ├── custom-buildsystems-plugins.dox ├── namespaces.dox └── snippets │ ├── BasisImporter.cpp │ ├── CMakeLists.txt │ ├── GltfImporter.cpp │ └── StbImageImporter.cpp ├── modules ├── CMakeLists.txt ├── FindAssimp.cmake ├── FindBasisUniversal.cmake ├── FindCorrade.cmake ├── FindDevIL.cmake ├── FindFAAD2.cmake ├── FindGlslang.cmake ├── FindHarfBuzz.cmake ├── FindMagnum.cmake ├── FindMagnumPlugins.cmake ├── FindOpenEXR.cmake ├── FindResvg.cmake ├── FindSpirvTools.cmake ├── FindSpng.cmake ├── FindWebP.cmake ├── FindZstd.cmake └── MagnumPluginsConfig.cmake ├── package ├── archlinux │ ├── .gitignore │ ├── .kateconfig │ ├── PKGBUILD │ ├── PKGBUILD-android-arm64 │ ├── PKGBUILD-clang │ ├── PKGBUILD-clang-addresssanitizer │ ├── PKGBUILD-clang-libc++ │ ├── PKGBUILD-clang-threadsanitizer │ ├── PKGBUILD-coverage │ ├── PKGBUILD-emscripten-wasm │ ├── PKGBUILD-emscripten-wasm-webgl2 │ ├── PKGBUILD-gcc48 │ ├── PKGBUILD-mingw-w64 │ ├── magnum-plugins-git │ │ ├── .gitignore │ │ └── PKGBUILD │ └── magnum-plugins │ │ └── PKGBUILD ├── ci │ ├── android-x86.sh │ ├── appveyor-cache-reset.txt │ ├── appveyor-desktop-mingw.bat │ ├── appveyor-desktop.bat │ ├── appveyor-rt.bat │ ├── appveyor.yml │ ├── circleci.yml │ ├── emscripten.sh │ ├── ios-simulator.sh │ └── unix-desktop.sh ├── debian │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── magnum-plugins-dev.install │ ├── magnum-plugins.install │ ├── rules │ └── source │ │ └── format ├── gentoo │ └── dev-libs │ │ └── magnum-plugins │ │ ├── Manifest │ │ └── magnum-plugins-9999.ebuild ├── git │ └── README.md ├── homebrew │ └── magnum-plugins.rb ├── msys │ ├── .gitattributes │ ├── PKGBUILD │ └── magnum-plugins │ │ └── PKGBUILD ├── rpm │ ├── build.sh │ └── magnum-plugins.spec └── sync-modules.sh └── src ├── CMakeLists.txt ├── Magnum ├── CMakeLists.txt ├── Implementation │ └── formatPluginsVersion.h ├── OpenDdl │ ├── CMakeLists.txt │ ├── Document.h │ ├── Implementation │ │ ├── Parsers.cpp │ │ └── Parsers.h │ ├── OpenDdl.cpp │ ├── OpenDdl.h │ ├── Property.h │ ├── Structure.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── ParsersTest.cpp │ │ ├── Test.cpp │ │ └── TypeTest.cpp │ ├── Type.h │ ├── Validation.h │ ├── configure.h.cmake │ └── visibility.h ├── Test │ ├── CMakeLists.txt │ └── VersionTest.cpp └── versionPlugins.h.cmake ├── MagnumExternal ├── CMakeLists.txt └── TinyGltf │ ├── CMakeLists.txt │ ├── json.hpp │ └── tiny_gltf.h ├── MagnumPlugins ├── .kateconfig ├── AssimpImporter │ ├── AssimpImporter.conf.cmake │ ├── AssimpImporter.cpp │ ├── AssimpImporter.h │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── AssimpImporterTest.cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── animation-no-scene.gltf │ │ ├── animation-patching.bin │ │ ├── animation-patching.bin.in │ │ ├── animation-patching.gltf │ │ ├── animation.bin │ │ ├── animation.gltf │ │ ├── b.png │ │ ├── camera-light-referenced-by-two-nodes.dae │ │ ├── camera-orthographic.gltf │ │ ├── camera.dae │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── diffuse_texture.png │ │ ├── embedded-texture.blend │ │ ├── empty.dae │ │ ├── empty.gltf │ │ ├── exported-animation.blend │ │ ├── exported-animation.dae │ │ ├── exported-animation.fbx │ │ ├── exported-animation.gltf │ │ ├── exported-animation.md │ │ ├── g.png │ │ ├── image-3d.dds │ │ ├── image-3d.mtl │ │ ├── image-3d.obj │ │ ├── image-embedded.fbx │ │ ├── image-filename-backslash.mtl │ │ ├── image-filename-backslash.obj │ │ ├── image-filename-trailing-space.mtl │ │ ├── image-filename-trailing-space.obj │ │ ├── image-mips.dds │ │ ├── image-mips.mtl │ │ ├── image-mips.obj │ │ ├── image-not-found.dae │ │ ├── light-area.blend │ │ ├── light-area.fbx │ │ ├── light-directional.blend │ │ ├── light.dae │ │ ├── line.dae │ │ ├── material-color-texture.mtl │ │ ├── material-color-texture.obj │ │ ├── material-color.dae │ │ ├── material-layers.fbx │ │ ├── material-raw.bin │ │ ├── material-raw.bin.in │ │ ├── material-raw.fbx │ │ ├── material-raw.gltf │ │ ├── material-texture-coordinates.dae │ │ ├── material-texture-matrix.bin │ │ ├── material-texture-matrix.bin.in │ │ ├── material-texture-matrix.gltf │ │ ├── material-texture.dae │ │ ├── mesh-multiple-primitives.dae │ │ ├── mesh.dae │ │ ├── multiple-textures.mtl │ │ ├── multiple-textures.obj │ │ ├── points.obj │ │ ├── polygon.obj │ │ ├── quad.stl │ │ ├── r.png │ │ ├── scene+mesh.dae │ │ ├── scene-name.gltf │ │ ├── scene.dae │ │ ├── skin-dummy-weights.bin │ │ ├── skin-dummy-weights.bin.in │ │ ├── skin-dummy-weights.gltf │ │ ├── skin-multiple-sets.bin │ │ ├── skin-multiple-sets.bin.in │ │ ├── skin-multiple-sets.dae │ │ ├── skin-multiple-sets.gltf │ │ ├── skin-no-mesh.bin │ │ ├── skin-no-mesh.bin.in │ │ ├── skin-no-mesh.gltf │ │ ├── skin-shared.bin │ │ ├── skin-shared.bin.in │ │ ├── skin-shared.gltf │ │ ├── skin.blend │ │ ├── skin.dae │ │ ├── skin.fbx │ │ ├── skin.gltf │ │ ├── skin.md │ │ ├── texture-ambient.mtl │ │ ├── texture-ambient.obj │ │ ├── y-up.dae │ │ ├── y.png │ │ └── z-up.dae │ ├── checkAssimpVersion.cpp │ ├── configure.h.cmake │ ├── configureInternal.h.cmake │ └── importStaticPlugin.cpp ├── AstcImporter │ ├── AstcImporter.conf │ ├── AstcImporter.cpp │ ├── AstcImporter.h │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── 12x10-incomplete-blocks.astc │ │ ├── 12x12-array-incomplete-blocks.astc │ │ ├── 3x3x3.astc │ │ ├── 8x8.astc │ │ ├── AstcImporterTest.cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── configure.h.cmake │ │ └── convert.sh │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── BasisImageConverter │ ├── BasisImageConverter.conf │ ├── BasisImageConverter.cpp │ ├── BasisImageConverter.h │ ├── CMakeLists.txt │ ├── Test │ │ ├── BasisImageConverterTest.cpp │ │ ├── CMakeLists.txt │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── BasisImporter │ ├── BasisImporter.conf │ ├── BasisImporter.cpp │ ├── BasisImporter.h │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── BasisImporterTest.cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── invalid-cube-face-count.basis │ │ ├── invalid-cube-face-size.basis │ │ ├── rgb-63x27.exr │ │ ├── rgb-63x27.png │ │ ├── rgb-64x32.png │ │ ├── rgb-linear-pow2.basis │ │ ├── rgb-linear-pow2.ktx2 │ │ ├── rgb-linear.basis │ │ ├── rgb-linear.ktx2 │ │ ├── rgb-noflip-pow2.ktx2 │ │ ├── rgb-noflip.basis │ │ ├── rgb-noflip.ktx2 │ │ ├── rgb-pow2.basis │ │ ├── rgb-pow2.ktx2 │ │ ├── rgb.basis │ │ ├── rgb.ktx2 │ │ ├── rgba-13x31.png │ │ ├── rgba-15x6.exr │ │ ├── rgba-15x6.png │ │ ├── rgba-27x27-slice1.png │ │ ├── rgba-27x27-slice2.png │ │ ├── rgba-27x27.png │ │ ├── rgba-2images-mips.basis │ │ ├── rgba-31x13.exr │ │ ├── rgba-31x13.png │ │ ├── rgba-3d-mips.basis │ │ ├── rgba-3d-mips.ktx2 │ │ ├── rgba-3d.basis │ │ ├── rgba-3d.ktx2 │ │ ├── rgba-63x27-slice1.png │ │ ├── rgba-63x27-slice2.png │ │ ├── rgba-63x27.exr │ │ ├── rgba-63x27.png │ │ ├── rgba-64x32.png │ │ ├── rgba-6x15.png │ │ ├── rgba-array-mips.basis │ │ ├── rgba-array-mips.ktx2 │ │ ├── rgba-array.basis │ │ ├── rgba-array.ktx2 │ │ ├── rgba-cubemap-array.basis │ │ ├── rgba-cubemap-array.ktx2 │ │ ├── rgba-cubemap.basis │ │ ├── rgba-cubemap.ktx2 │ │ ├── rgba-noflip-array.ktx2 │ │ ├── rgba-pow2.basis │ │ ├── rgba-pow2.ktx2 │ │ ├── rgba-uastc.basis │ │ ├── rgba-uastc.ktx2 │ │ ├── rgba-video-uastc.basis │ │ ├── rgba-video-uastc.ktx2 │ │ ├── rgba-video.basis │ │ ├── rgba-video.ktx2 │ │ ├── rgba.basis │ │ ├── rgba.ktx2 │ │ ├── rgbaf.basis │ │ ├── rgbaf.ktx2 │ │ ├── rgbf.basis │ │ └── rgbf.ktx2 │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── BcDecImageConverter │ ├── BcDecImageConverter.conf │ ├── BcDecImageConverter.cpp │ ├── BcDecImageConverter.h │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── BcDecImageConverterTest.cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── bc6h.dds │ │ ├── bc6hs.dds │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ └── rgb16f.ktx2 │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── CMakeLists.txt ├── CgltfImporter │ ├── CMakeLists.txt │ ├── CgltfImporter.conf │ ├── CgltfImporter.cpp │ ├── CgltfImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── CgltfImporterTest.cpp │ │ ├── configure.h.cmake │ │ └── required-extensions-unsupported.gltf │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── DdsImporter │ ├── CMakeLists.txt │ ├── DdsImporter.conf │ ├── DdsImporter.cpp │ ├── DdsImporter.h │ ├── DxgiFormat.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── DdsImporterTest.cpp │ │ ├── README.md │ │ ├── bc4snorm.dds │ │ ├── bc4unorm.dds │ │ ├── bc5snorm.dds │ │ ├── bc5unorm.dds │ │ ├── bgr8unorm-mips.dds │ │ ├── bgr8unorm.dds │ │ ├── bgra8unorm-3d.dds │ │ ├── bgrx8unorm.dds │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── cube-flag-set-for-3d.dds │ │ ├── depth-set-for-non-3d.dds │ │ ├── dxt1-3d.dds │ │ ├── dxt1-cube-mips.dds │ │ ├── dxt1.dds │ │ ├── dxt10-array-size-set-for-3d.dds │ │ ├── dxt10-astc8x5unorm.dds │ │ ├── dxt10-ayuv.dds │ │ ├── dxt10-bc7-3d.dds │ │ ├── dxt10-bc7-cube-mips.dds │ │ ├── dxt10-bc7.dds │ │ ├── dxt10-bgra8unorm-3d.dds │ │ ├── dxt10-cube-flag-set-for-1d.dds │ │ ├── dxt10-cube-flag-set-for-3d.dds │ │ ├── dxt10-depth-set-for-non-3d.dds │ │ ├── dxt10-depth24unorm-stencil8ui.dds │ │ ├── dxt10-depth32f-stencil8ui.dds │ │ ├── dxt10-format136.dds │ │ ├── dxt10-format189.dds │ │ ├── dxt10-height-set-for-1d.dds │ │ ├── dxt10-invalid-resource-dimension.dds │ │ ├── dxt10-r16f-cube.dds │ │ ├── dxt10-r32i-mips.dds │ │ ├── dxt10-r8snorm-cube-array.dds │ │ ├── dxt10-r8unorm-3d-zero-fields-zero-depth-zero-mips.dds │ │ ├── dxt10-rg16f-1d-array-mips.dds │ │ ├── dxt10-rg16f-1d.dds │ │ ├── dxt10-rg32f.dds │ │ ├── dxt10-rg8unorm.dds │ │ ├── dxt10-rgb32i.dds │ │ ├── dxt10-rgba16snorm.dds │ │ ├── dxt10-rgba32ui.dds │ │ ├── dxt10-rgba8srgb.dds │ │ ├── dxt10-rgba8unorm-3d.dds │ │ ├── dxt10-rgba8unorm-array.dds │ │ ├── dxt10-rgba8unorm.dds │ │ ├── dxt3-incomplete-blocks.dds │ │ ├── dxt3.dds │ │ ├── dxt4.dds │ │ ├── dxt5.dds │ │ ├── fourcc-114.dds │ │ ├── fourcc-117.dds │ │ ├── r8unorm-3d-zero-fields-zero-depth-zero-mips.dds │ │ ├── r8unorm.dds │ │ ├── rgb8unorm-yup.dds │ │ ├── rgb8unorm.dds │ │ ├── rgba8unorm-3d-yup-zbackward.dds │ │ ├── rgba8unorm-3d.dds │ │ ├── rgba8unorm-cube-incomplete.dds │ │ ├── rgba8unorm-cube-mips.dds │ │ ├── rgba8unorm-cube.dds │ │ ├── rgbx8unorm.dds │ │ ├── unknown-format-rgb.dds │ │ ├── unknown-format-rgba.dds │ │ ├── unknown-format.dds │ │ └── wrong-signature.dds │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── DevIlImageImporter │ ├── CMakeLists.txt │ ├── DevIlImageImporter.conf │ ├── DevIlImageImporter.cpp │ ├── DevIlImageImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── DevIlImageImporterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── DrFlacAudioImporter │ ├── CMakeLists.txt │ ├── DrFlacImporter.conf │ ├── DrFlacImporter.cpp │ ├── DrFlacImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── DrFlacImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── mono16.flac │ │ ├── mono24.flac │ │ ├── mono32.flac │ │ ├── mono8.flac │ │ ├── quad16.flac │ │ ├── quad24.flac │ │ ├── stereo16.flac │ │ ├── stereo24.flac │ │ ├── stereo8.flac │ │ ├── surround51Channel16.flac │ │ ├── surround51Channel24.flac │ │ ├── surround71Channel24.flac │ │ └── zeroSamples.flac │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── DrMp3AudioImporter │ ├── CMakeLists.txt │ ├── DrMp3Importer.conf │ ├── DrMp3Importer.cpp │ ├── DrMp3Importer.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── DrMp3ImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── mono16.mp3 │ │ ├── stereo16.mp3 │ │ └── zeroSamples.mp3 │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── DrWavAudioImporter │ ├── CMakeLists.txt │ ├── DrWavImporter.conf │ ├── DrWavImporter.cpp │ ├── DrWavImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── DrWavImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── extension12.wav │ │ ├── extension16.wav │ │ ├── extension24.wav │ │ ├── extension32.wav │ │ ├── extension32f.wav │ │ ├── extension64f.wav │ │ ├── extension8.wav │ │ ├── extensionALaw.wav │ │ ├── extensionMuLaw.wav │ │ ├── invalidDataChunk.wav │ │ ├── invalidFactChunk.wav │ │ ├── invalidLength.wav │ │ ├── invalidPadding.wav │ │ ├── mono16.wav │ │ ├── mono24.wav │ │ ├── mono32f.wav │ │ ├── mono8.wav │ │ ├── mono8ALaw.wav │ │ ├── mono8MuLaw.wav │ │ ├── stereo12.wav │ │ ├── stereo16.wav │ │ ├── stereo24.wav │ │ ├── stereo32.wav │ │ ├── stereo32f.wav │ │ ├── stereo64f.wav │ │ ├── stereo8.wav │ │ ├── stereo8ALaw.wav │ │ ├── stereo8MuLaw.wav │ │ ├── surround51Channel16.wav │ │ ├── surround71Channel24.wav │ │ ├── unsupportedBitRate.wav │ │ ├── unsupportedChannelCount.wav │ │ ├── wrongSignature.wav │ │ └── zeroSamples.wav │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── EtcDecImageConverter │ ├── CMakeLists.txt │ ├── EtcDecImageConverter.conf │ ├── EtcDecImageConverter.cpp │ ├── EtcDecImageConverter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── EtcDecImageConverterTest.cpp │ │ ├── README.md │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── eac-r.ktx2 │ │ ├── eac-rg.ktx2 │ │ ├── etc-rgb8a1.ktx2 │ │ └── etc-rgba8.ktx2 │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── Faad2AudioImporter │ ├── CMakeLists.txt │ ├── Faad2Importer.conf │ ├── Faad2Importer.cpp │ ├── Faad2Importer.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── Faad2ImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── error.aac │ │ ├── mono.aac │ │ └── stereo.aac │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── FreeTypeFont │ ├── CMakeLists.txt │ ├── FreeTypeFont.conf │ ├── FreeTypeFont.cpp │ ├── FreeTypeFont.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── FreeTypeFontReinitializeTest.cpp │ │ ├── FreeTypeFontTest.cpp │ │ ├── Oxygen.ttf │ │ ├── SourceSans3-Regular.subset.otf │ │ ├── configure.h.cmake │ │ ├── glyph-cache-array0.png │ │ ├── glyph-cache-array1.png │ │ └── glyph-cache.png │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── GlslangShaderConverter │ ├── CMakeLists.txt │ ├── GlslangConverter.conf │ ├── GlslangConverter.cpp │ ├── GlslangConverter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── GlslangConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── includes.vert │ │ ├── shader.gl.frag │ │ ├── shader.gl.spv │ │ ├── shader.oldgl.frag │ │ ├── shader.vk-glslang14.spv │ │ ├── shader.vk.debug-glslang11.spv │ │ ├── shader.vk.debug-glslang14.spv │ │ ├── shader.vk.debug-glslang8.spv │ │ ├── shader.vk.debug.spv │ │ ├── shader.vk.frag │ │ ├── shader.vk.spv │ │ └── sub │ │ │ ├── directory │ │ │ ├── basics.glsl │ │ │ └── definitions.glsl │ │ │ └── relative.glsl │ ├── checkGlslangRequiresCpp17.cpp │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── GltfImporter │ ├── CMakeLists.txt │ ├── Gltf.h │ ├── GltfImporter.conf │ ├── GltfImporter.cpp │ ├── GltfImporter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── GltfImporterDecodeTest.cpp │ │ ├── GltfImporterTest.cpp │ │ ├── README.md │ │ ├── animation-embedded.glb │ │ ├── animation-embedded.gltf │ │ ├── animation-invalid-buffer-notfound.gltf │ │ ├── animation-invalid.gltf │ │ ├── animation-missing-target-node.gltf │ │ ├── animation-patching.bin │ │ ├── animation-patching.bin.in │ │ ├── animation-patching.gltf │ │ ├── animation-splines-sharing.gltf │ │ ├── animation-splines-single-or-no-keyframes.gltf │ │ ├── animation.bin │ │ ├── animation.bin.in │ │ ├── animation.glb │ │ ├── animation.gltf │ │ ├── buffer-invalid-short-size-embedded.glb │ │ ├── buffer-invalid-short-size-embedded.gltf │ │ ├── buffer-invalid-short-size.glb │ │ ├── buffer-invalid-short-size.gltf │ │ ├── buffer-long-size.glb │ │ ├── buffer-long-size.gltf │ │ ├── camera-invalid.gltf │ │ ├── camera.gltf │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── empty.glb │ │ ├── empty.gltf │ │ ├── encoded-uris.gltf │ │ ├── error.gltf │ │ ├── escaped-strings.gltf │ │ ├── external-data-order.glb │ │ ├── external-data-order.gltf │ │ ├── external-data.bin │ │ ├── external-data.bin.in │ │ ├── external-data.glb │ │ ├── external-data.gltf │ │ ├── glb2gltf.py │ │ ├── gltf2basis.py │ │ ├── gltf2embedded.py │ │ ├── gltf2glb.py │ │ ├── image-2d-array-mips.ktx2 │ │ ├── image-2d-array.ktx2 │ │ ├── image-2d-mips.ktx2 │ │ ├── image-3d.dds │ │ ├── image-basis-embedded.glb │ │ ├── image-basis-embedded.gltf │ │ ├── image-basis.glb │ │ ├── image-basis.gltf │ │ ├── image-buffer-embedded.glb │ │ ├── image-buffer-embedded.gltf │ │ ├── image-buffer.glb │ │ ├── image-buffer.gltf │ │ ├── image-embedded.glb │ │ ├── image-embedded.gltf │ │ ├── image-invalid-ktx-notfound.gltf │ │ ├── image-invalid-ktx.gltf │ │ ├── image-invalid-notfound.gltf │ │ ├── image-invalid.gltf │ │ ├── image.basis │ │ ├── image.glb │ │ ├── image.gltf │ │ ├── image.png │ │ ├── in2bin.py │ │ ├── invalid-uri.gltf │ │ ├── light-invalid.gltf │ │ ├── light.gltf │ │ ├── material-clearcoat.gltf │ │ ├── material-common.gltf │ │ ├── material-extras.gltf │ │ ├── material-invalid-ktx.gltf │ │ ├── material-invalid.gltf │ │ ├── material-ior.gltf │ │ ├── material-metallicroughness.gltf │ │ ├── material-phong-fallback-ktx.gltf │ │ ├── material-phong-fallback.gltf │ │ ├── material-raw.gltf │ │ ├── material-sheen.gltf │ │ ├── material-specular.gltf │ │ ├── material-specularglossiness.gltf │ │ ├── material-transmission.gltf │ │ ├── material-unlit.gltf │ │ ├── material-volume.gltf │ │ ├── mesh-buffers.0.bin │ │ ├── mesh-buffers.0.bin.in │ │ ├── mesh-buffers.1.bin │ │ ├── mesh-buffers.1.bin.in │ │ ├── mesh-buffers.2.bin │ │ ├── mesh-buffers.2.bin.in │ │ ├── mesh-buffers.gltf │ │ ├── mesh-colors.bin │ │ ├── mesh-colors.bin.in │ │ ├── mesh-colors.gltf │ │ ├── mesh-custom-attributes.bin │ │ ├── mesh-custom-attributes.bin.in │ │ ├── mesh-custom-attributes.gltf │ │ ├── mesh-duplicate-attributes.gltf │ │ ├── mesh-embedded.glb │ │ ├── mesh-embedded.gltf │ │ ├── mesh-invalid-buffer-notfound.gltf │ │ ├── mesh-invalid-empty-primitives.gltf │ │ ├── mesh-invalid-missing-primitives-property.gltf │ │ ├── mesh-invalid-morph-target.gltf │ │ ├── mesh-invalid-primitive-attributes-property.gltf │ │ ├── mesh-invalid-primitive-targets-property.gltf │ │ ├── mesh-invalid-primitive.gltf │ │ ├── mesh-invalid-primitives-property.gltf │ │ ├── mesh-invalid-sparse-indices.bin │ │ ├── mesh-invalid-sparse-indices.bin.in │ │ ├── mesh-invalid-sparse-indices.gltf │ │ ├── mesh-invalid-texcoord-flip-attribute-accessor-invalid-component-type.gltf │ │ ├── mesh-invalid-texcoord-flip-attribute-accessor-invalid-normalized.gltf │ │ ├── mesh-invalid-texcoord-flip-attribute-accessor-missing-component-type.gltf │ │ ├── mesh-invalid-texcoord-flip-attribute-oob.gltf │ │ ├── mesh-invalid-texcoord-flip-attribute.gltf │ │ ├── mesh-invalid-texcoord-flip-morph-target-attribute.gltf │ │ ├── mesh-invalid.gltf │ │ ├── mesh-morph-target-attributes.bin │ │ ├── mesh-morph-target-attributes.bin.in │ │ ├── mesh-morph-target-attributes.gltf │ │ ├── mesh-multiple-primitives.gltf │ │ ├── mesh-no-indices-no-vertices-no-buffer-uri.glb │ │ ├── mesh-no-indices-no-vertices-no-buffer-uri.gltf │ │ ├── mesh-primitives-types.bin │ │ ├── mesh-primitives-types.bin.in │ │ ├── mesh-primitives-types.gltf │ │ ├── mesh-size-not-multiple-of-stride.bin │ │ ├── mesh-size-not-multiple-of-stride.bin.in │ │ ├── mesh-size-not-multiple-of-stride.gltf │ │ ├── mesh-skin-attributes.bin │ │ ├── mesh-skin-attributes.bin.in │ │ ├── mesh-skin-attributes.gltf │ │ ├── mesh-sparse.bin │ │ ├── mesh-sparse.bin.in │ │ ├── mesh-sparse.gltf │ │ ├── mesh-unordered-attributes.gltf │ │ ├── mesh-unsigned-int-vertex-formats.bin │ │ ├── mesh-unsigned-int-vertex-formats.bin.in │ │ ├── mesh-unsigned-int-vertex-formats.gltf │ │ ├── mesh-unsupported-vertex-formats.bin │ │ ├── mesh-unsupported-vertex-formats.bin.in │ │ ├── mesh-unsupported-vertex-formats.gltf │ │ ├── mesh.bin │ │ ├── mesh.bin.in │ │ ├── mesh.glb │ │ ├── mesh.gltf │ │ ├── přívodní-šňůra.bin │ │ ├── přívodní-šňůra.bin.in │ │ ├── přívodní-šňůra.gltf │ │ ├── přívodní-šňůra.png │ │ ├── required-extensions-unsupported.gltf │ │ ├── required-extensions.gltf │ │ ├── resources.conf │ │ ├── scene-custom-fields.gltf │ │ ├── scene-default-none.gltf │ │ ├── scene-default-oob.gltf │ │ ├── scene-invalid-child-not-root.gltf │ │ ├── scene-invalid-child-oob.gltf │ │ ├── scene-invalid-children-property.gltf │ │ ├── scene-invalid-cycle-deep.gltf │ │ ├── scene-invalid-cycle.gltf │ │ ├── scene-invalid-extras-property.gltf │ │ ├── scene-invalid-multiple-parents.gltf │ │ ├── scene-invalid-nested-extras-property.gltf │ │ ├── scene-invalid-node-oob.gltf │ │ ├── scene-invalid-nodes-property.gltf │ │ ├── scene-invalid.gltf │ │ ├── scene-transformation-patching.gltf │ │ ├── scene-transformation.gltf │ │ ├── scene.gltf │ │ ├── skin-embedded.glb │ │ ├── skin-embedded.gltf │ │ ├── skin-invalid-buffer-notfound.gltf │ │ ├── skin-invalid.gltf │ │ ├── skin.bin │ │ ├── skin.bin.in │ │ ├── skin.glb │ │ ├── skin.gltf │ │ ├── texcoord-flip-unnormalized-morph-target.gltf │ │ ├── texcoord-flip-unnormalized.gltf │ │ ├── texcoord-flip.bin │ │ ├── texcoord-flip.bin.in │ │ ├── texcoord-flip.gltf │ │ ├── texture-extensions.gltf │ │ ├── texture-invalid-ktx-extension-source-oob.gltf │ │ ├── texture-invalid-ktx-extension-source-property.gltf │ │ ├── texture-invalid-ktx-extension.gltf │ │ ├── texture-invalid-ktx-extensions-property.gltf │ │ ├── texture-invalid-ktx-layer-then-no-extension.gltf │ │ ├── texture-invalid-ktx-layer-then-no-layer.gltf │ │ ├── texture-invalid-ktx-missing-extension-source-property.gltf │ │ ├── texture-invalid-ktx-missing-source-property.gltf │ │ ├── texture-invalid-ktx-no-extension-then-layer.gltf │ │ ├── texture-invalid-ktx-no-layer-then-layer.gltf │ │ ├── texture-invalid-ktx-source-oob.gltf │ │ ├── texture-invalid-ktx-source-property.gltf │ │ ├── texture-invalid.gltf │ │ ├── texture-ktx.gltf │ │ ├── texture.gltf │ │ ├── version-legacy.gltf │ │ ├── version-supported.gltf │ │ ├── version-unsupported-min.gltf │ │ └── version-unsupported.gltf │ ├── configure.h.cmake │ ├── decode.h │ └── importStaticPlugin.cpp ├── GltfSceneConverter │ ├── CMakeLists.txt │ ├── GltfSceneConverter.conf │ ├── GltfSceneConverter.cpp │ ├── GltfSceneConverter.h │ ├── Test │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── GltfSceneConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── empty.glb │ │ ├── empty.gltf │ │ ├── image-3d-bundled.bin │ │ ├── image-3d-bundled.gltf │ │ ├── image-3d-compressed.glb │ │ ├── image-3d-no-texture.gltf │ │ ├── image-3d-not-bundled.0.ktx2 │ │ ├── image-3d-not-bundled.glb │ │ ├── image-3d.0.ktx2 │ │ ├── image-3d.glb │ │ ├── image-3d.gltf │ │ ├── image-accessor-names.gltf │ │ ├── image-basis.glb │ │ ├── image-bundled.bin │ │ ├── image-bundled.gltf │ │ ├── image-jpeg.glb │ │ ├── image-ktx-astc.glb │ │ ├── image-ktx-compressed-no-extension.glb │ │ ├── image-ktx-compressed.glb │ │ ├── image-ktx-no-extension.glb │ │ ├── image-ktx.glb │ │ ├── image-multiple.1.png │ │ ├── image-multiple.bin │ │ ├── image-multiple.gltf │ │ ├── image-name-accessor-names.gltf │ │ ├── image-name.gltf │ │ ├── image-not-bundled.0.png │ │ ├── image-not-bundled.glb │ │ ├── image-tga.glb │ │ ├── image-webp.glb │ │ ├── image.0.png │ │ ├── image.glb │ │ ├── image.gltf │ │ ├── material-2d-array-textures.gltf │ │ ├── material-alpha-mask-defaults-kept.gltf │ │ ├── material-alpha-mask-defaults-omitted.gltf │ │ ├── material-alpha-mask.gltf │ │ ├── material-clearcoat-default-texture-swizzle.gltf │ │ ├── material-clearcoat-gltf-defaults-kept.gltf │ │ ├── material-clearcoat-gltf-defaults-omitted.gltf │ │ ├── material-clearcoat-magnum-defaults.gltf │ │ ├── material-clearcoat.gltf │ │ ├── material-common.gltf │ │ ├── material-custom-no-transform-explicit-used-extensions.gltf │ │ ├── material-custom-skipped-3d.gltf │ │ ├── material-custom-skipped.gltf │ │ ├── material-custom.gltf │ │ ├── material-default-texture-swizzle.gltf │ │ ├── material-defaults-kept.gltf │ │ ├── material-defaults-omitted.gltf │ │ ├── material-empty-metallicroughness.gltf │ │ ├── material-empty.gltf │ │ ├── material-metallicroughness.gltf │ │ ├── material-multiple.gltf │ │ ├── material-name.gltf │ │ ├── material-unlit.gltf │ │ ├── material-unused-attributes-layers.gltf │ │ ├── mesh-accessor-names.gltf │ │ ├── mesh-attribute-bitangent.gltf │ │ ├── mesh-attribute-color3.gltf │ │ ├── mesh-attribute-color4.gltf │ │ ├── mesh-attribute-color4us.gltf │ │ ├── mesh-attribute-matrix2x2b.gltf │ │ ├── mesh-attribute-matrix3x3s.gltf │ │ ├── mesh-attribute-matrix4x4b.gltf │ │ ├── mesh-attribute-normal-quantized.gltf │ │ ├── mesh-attribute-objectidub.gltf │ │ ├── mesh-attribute-objectidui.gltf │ │ ├── mesh-attribute-position-quantized-b-normalized.gltf │ │ ├── mesh-attribute-position-quantized-s.gltf │ │ ├── mesh-attribute-position-quantized-ub.gltf │ │ ├── mesh-attribute-position-quantized-us-normalized.gltf │ │ ├── mesh-attribute-tangent-quantized.gltf │ │ ├── mesh-attribute-tangent.gltf │ │ ├── mesh-attribute-tangent3.gltf │ │ ├── mesh-attribute-texture-coordinates-quantized.gltf │ │ ├── mesh-attribute-texture-coordinates.gltf │ │ ├── mesh-buffer-alignment.gltf │ │ ├── mesh-buffer-views-interleaved-padding-begin-end.bin │ │ ├── mesh-buffer-views-interleaved-padding-begin-end.gltf │ │ ├── mesh-buffer-views-interleaved-padding-middle.bin │ │ ├── mesh-buffer-views-interleaved-padding-middle.gltf │ │ ├── mesh-buffer-views-mixed.bin │ │ ├── mesh-buffer-views-mixed.gltf │ │ ├── mesh-buffer-views-noninterleaved.bin │ │ ├── mesh-buffer-views-noninterleaved.gltf │ │ ├── mesh-custom-attribute-no-name.gltf │ │ ├── mesh-custom-objectid-name.gltf │ │ ├── mesh-duplicate-attribute.gltf │ │ ├── mesh-multiple.bin │ │ ├── mesh-multiple.gltf │ │ ├── mesh-name-accessor-names.gltf │ │ ├── mesh-name.gltf │ │ ├── mesh-no-attributes.gltf │ │ ├── mesh-no-indices-no-attributes.glb │ │ ├── mesh-no-indices-no-attributes.gltf │ │ ├── mesh-no-indices-no-vertices.glb │ │ ├── mesh-no-indices-no-vertices.gltf │ │ ├── mesh-no-indices.gltf │ │ ├── mesh-skinning-attributes-ui.gltf │ │ ├── mesh-skinning-attributes.bin │ │ ├── mesh-skinning-attributes.gltf │ │ ├── mesh.bin │ │ ├── mesh.glb │ │ ├── mesh.gltf │ │ ├── metadata-explicit-implicit-extensions.gltf │ │ ├── metadata.gltf │ │ ├── scene-custom-fields.gltf │ │ ├── scene-empty-default.gltf │ │ ├── scene-empty.gltf │ │ ├── scene-invalid.gltf │ │ ├── scene-meshes-materials.gltf │ │ ├── scene-name.gltf │ │ ├── scene.gltf │ │ ├── texcoord-flip-floats-material-custom-material-attribute.glb │ │ ├── texcoord-flip-floats-material.glb │ │ ├── texcoord-flip-floats.glb │ │ ├── texcoord-flip-normalized-byte-material.glb │ │ ├── texcoord-flip-normalized-unsigned-byte-material.glb │ │ ├── texcoord-flip-normalized-unsigned-byte.glb │ │ ├── texcoord-flip-normalized-unsigned-short-material.glb │ │ ├── texcoord-flip-normalized-unsigned-short.glb │ │ ├── texcoord-flip-short-material.glb │ │ ├── texture-basis.gltf │ │ ├── texture-deduplicated-samplers.gltf │ │ ├── texture-jpeg.gltf │ │ ├── texture-ktx-no-extension.gltf │ │ ├── texture-ktx.gltf │ │ ├── texture-multiple.gltf │ │ ├── texture-name.gltf │ │ ├── texture-tga.gltf │ │ ├── texture-webp.gltf │ │ └── texture.gltf │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── HarfBuzzFont │ ├── CMakeLists.txt │ ├── HarfBuzzFont.conf │ ├── HarfBuzzFont.cpp │ ├── HarfBuzzFont.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── HarfBuzzFontTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ ├── importStaticPlugin.cpp │ └── scriptMapping.h ├── IcoImporter │ ├── CMakeLists.txt │ ├── IcoImporter.conf │ ├── IcoImporter.cpp │ ├── IcoImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── IcoImporterTest.cpp │ │ ├── bmp+png.ico │ │ ├── configure.h.cmake │ │ ├── icon16x8.png │ │ ├── icon256x256.png │ │ ├── icon32x64.png │ │ ├── png2ico.py │ │ └── pngs.ico │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── JpegImageConverter │ ├── CMakeLists.txt │ ├── JpegImageConverter.conf │ ├── JpegImageConverter.cpp │ ├── JpegImageConverter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── JpegImageConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── grayscale-100.jpg │ │ ├── grayscale-80.jpg │ │ ├── rgb-100-jpeg9e.jpg │ │ ├── rgb-100.jpg │ │ ├── rgb-80-jpeg9d.jpg │ │ ├── rgb-80-jpeg9e.jpg │ │ └── rgb-80.jpg │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── JpegImporter │ ├── CMakeLists.txt │ ├── JpegImporter.conf │ ├── JpegImporter.cpp │ ├── JpegImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── JpegImporterTest.cpp │ │ ├── cmyk.jpg │ │ ├── configure.h.cmake │ │ ├── gray.jpg │ │ └── rgb.jpg │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── KtxImageConverter │ ├── CMakeLists.txt │ ├── KtxImageConverter.conf │ ├── KtxImageConverter.cpp │ ├── KtxImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── KtxImageConverterTest.cpp │ │ ├── README.md │ │ ├── configure.h.cmake │ │ ├── dfd-data.bin │ │ └── testbidirectionalmapping.c.patch │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── KtxImporter │ ├── CMakeLists.txt │ ├── KtxHeader.h │ ├── KtxImporter.conf │ ├── KtxImporter.cpp │ ├── KtxImporter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── 1d-compressed-bc1.bin │ │ ├── 1d-compressed-bc1.ktx2 │ │ ├── 1d-compressed-etc2.bin │ │ ├── 1d-compressed-etc2.ktx2 │ │ ├── 1d-compressed-mipmaps-mip0.bin │ │ ├── 1d-compressed-mipmaps-mip1.bin │ │ ├── 1d-compressed-mipmaps-mip2.bin │ │ ├── 1d-compressed-mipmaps.ktx2 │ │ ├── 1d-layers.ktx2 │ │ ├── 1d-mipmaps.ktx2 │ │ ├── 1d.ktx2 │ │ ├── 2d-compressed-astc.bin │ │ ├── 2d-compressed-astc.ktx2 │ │ ├── 2d-compressed-bc1.bin │ │ ├── 2d-compressed-bc1.ktx2 │ │ ├── 2d-compressed-bc2-ru.ktx2 │ │ ├── 2d-compressed-bc2.ktx2 │ │ ├── 2d-compressed-bc3.bin │ │ ├── 2d-compressed-bc3.ktx2 │ │ ├── 2d-compressed-bc4.ktx2 │ │ ├── 2d-compressed-bc5.ktx2 │ │ ├── 2d-compressed-etc2.bin │ │ ├── 2d-compressed-etc2.ktx2 │ │ ├── 2d-compressed-layers.bin │ │ ├── 2d-compressed-layers.ktx2 │ │ ├── 2d-compressed-mipmaps-mip0.bin │ │ ├── 2d-compressed-mipmaps-mip1.bin │ │ ├── 2d-compressed-mipmaps-mip2.bin │ │ ├── 2d-compressed-mipmaps-mip3.bin │ │ ├── 2d-compressed-mipmaps.ktx2 │ │ ├── 2d-compressed-pvrtc.bin │ │ ├── 2d-compressed-pvrtc.ktx2 │ │ ├── 2d-d16.ktx2 │ │ ├── 2d-d24s8.ktx2 │ │ ├── 2d-d32fs8.ktx2 │ │ ├── 2d-layers.ktx2 │ │ ├── 2d-mipmaps-and-layers.ktx2 │ │ ├── 2d-mipmaps-incomplete.ktx2 │ │ ├── 2d-mipmaps.ktx2 │ │ ├── 2d-rgb.ktx2 │ │ ├── 2d-rgb32.ktx2 │ │ ├── 2d-rgba.ktx2 │ │ ├── 2d-rgbf32.ktx2 │ │ ├── 2d-s8.ktx2 │ │ ├── 3d-compressed-astc3d-ruo.ktx2 │ │ ├── 3d-compressed-astc3d.bin │ │ ├── 3d-compressed-astc3d.ktx2 │ │ ├── 3d-compressed-bc1-ruo.ktx2 │ │ ├── 3d-compressed-bc1.ktx2 │ │ ├── 3d-compressed-bc7.ktx2 │ │ ├── 3d-compressed-etc2rgb8.bin │ │ ├── 3d-compressed-etc2rgb8.ktx2 │ │ ├── 3d-compressed-mipmaps-mip0.bin │ │ ├── 3d-compressed-mipmaps-mip1.bin │ │ ├── 3d-compressed-mipmaps-mip2.bin │ │ ├── 3d-compressed-mipmaps-mip3.bin │ │ ├── 3d-compressed-mipmaps.ktx2 │ │ ├── 3d-layers.ktx2 │ │ ├── 3d-mipmaps.ktx2 │ │ ├── 3d.ktx2 │ │ ├── CMakeLists.txt │ │ ├── KtxImporterTest.cpp │ │ ├── README.md │ │ ├── bgr-swizzle-bgr-16bit.ktx2 │ │ ├── bgr-swizzle-bgr.ktx2 │ │ ├── bgr.ktx2 │ │ ├── bgra-swizzle-bgra.ktx2 │ │ ├── bgra.ktx2 │ │ ├── black-1d.png │ │ ├── black.png │ │ ├── configure.h.cmake │ │ ├── cube+x.png │ │ ├── cube+y.png │ │ ├── cube+z.png │ │ ├── cube-x.png │ │ ├── cube-y.png │ │ ├── cube-z.png │ │ ├── cubemap-layers.ktx2 │ │ ├── cubemap-mipmaps.ktx2 │ │ ├── cubemap.ktx2 │ │ ├── generate.sh │ │ ├── pattern-16bit.png │ │ ├── pattern-1d-uneven.png │ │ ├── pattern-1d.png │ │ ├── pattern-mip1.png │ │ ├── pattern-mip2.png │ │ ├── pattern-pot.png │ │ ├── pattern-uneven.png │ │ ├── pattern.png │ │ ├── swizzle-bgr.ktx2 │ │ ├── swizzle-bgra.ktx2 │ │ ├── swizzle-identity.ktx2 │ │ ├── swizzle-unsupported.ktx2 │ │ └── version1.ktx │ ├── compressedFormatMapping.hpp │ ├── configure.h.cmake │ ├── formatMapping.hpp │ ├── formatMapping.py │ └── importStaticPlugin.cpp ├── LunaSvgImporter │ ├── CMakeLists.txt │ ├── LunaSvgImporter.conf │ ├── LunaSvgImporter.cpp │ ├── LunaSvgImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── LunaSvgImporterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── MeshOptimizerSceneConverter │ ├── CMakeLists.txt │ ├── MeshOptimizerSceneConverter.conf │ ├── MeshOptimizerSceneConverter.cpp │ ├── MeshOptimizerSceneConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── MeshOptimizerSceneConverterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── MiniExrImageConverter │ ├── CMakeLists.txt │ ├── MiniExrImageConverter.conf │ ├── MiniExrImageConverter.cpp │ ├── MiniExrImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── MiniExrImageConverterTest.cpp │ │ ├── configure.h.cmake │ │ └── image.exr │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── OpenExrImageConverter │ ├── CMakeLists.txt │ ├── OpenExrImageConverter.conf │ ├── OpenExrImageConverter.cpp │ ├── OpenExrImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── OpenExrImageConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── envmap-cube-31.exr │ │ ├── envmap-cube-custom-windows-31.exr │ │ ├── envmap-latlong.exr │ │ ├── levels-cube-31.exr │ │ ├── levels-cube-incomplete-31.exr │ │ ├── rb32f-custom-channels.exr │ │ └── rgba32f-custom-channels-31.exr │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── OpenExrImporter │ ├── CMakeLists.txt │ ├── OpenExrImporter.conf │ ├── OpenExrImporter.cpp │ ├── OpenExrImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── OpenExrImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── depth32f-custom-channels.exr │ │ ├── depth32f.exr │ │ ├── depth32ui.exr │ │ ├── envmap-cube-custom-windows.exr │ │ ├── envmap-cube.exr │ │ ├── levels-cube-incomplete.exr │ │ ├── levels-cube.exr │ │ ├── levels2D-incomplete.exr │ │ ├── levels2D-tile1x1.exr │ │ ├── levels2D.exr │ │ ├── rg32ui.exr │ │ ├── rgb16f-custom-windows.exr │ │ ├── rgb16f-ripmap.exr │ │ ├── rgb16f-tiled.exr │ │ ├── rgb16f.exr │ │ ├── rgb32fa32ui.exr │ │ ├── rgba32f-custom-channels.exr │ │ └── rgba32f.exr │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── OpenGexImporter │ ├── CMakeLists.txt │ ├── OpenGex.h │ ├── OpenGexImporter.conf │ ├── OpenGexImporter.cpp │ ├── OpenGexImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── OpenGexImporterTest.cpp │ │ ├── camera-invalid.ogex │ │ ├── camera-metrics.ogex │ │ ├── camera.ogex │ │ ├── configure.h.cmake │ │ ├── extension.ogex │ │ ├── image-3d.dds │ │ ├── image-mips.dds │ │ ├── image.tga │ │ ├── light-invalid.ogex │ │ ├── light.ogex │ │ ├── material-invalid.ogex │ │ ├── material.ogex │ │ ├── mesh-invalid-int64.ogex │ │ ├── mesh-invalid.ogex │ │ ├── mesh-metrics.ogex │ │ ├── mesh.ogex │ │ ├── scene-camera.ogex │ │ ├── scene-geometry.ogex │ │ ├── scene-invalid-camera.ogex │ │ ├── scene-invalid-geometry.ogex │ │ ├── scene-invalid-light.ogex │ │ ├── scene-invalid-rotation-array-size.ogex │ │ ├── scene-invalid-rotation-kind.ogex │ │ ├── scene-invalid-rotation-object-only.ogex │ │ ├── scene-invalid-scaling-array-size.ogex │ │ ├── scene-invalid-scaling-kind.ogex │ │ ├── scene-invalid-scaling-object-only.ogex │ │ ├── scene-invalid-transformation-array-size.ogex │ │ ├── scene-invalid-transformation-object-only.ogex │ │ ├── scene-invalid-translation-array-size.ogex │ │ ├── scene-invalid-translation-kind.ogex │ │ ├── scene-invalid-translation-object-only.ogex │ │ ├── scene-light.ogex │ │ ├── scene-rotation.ogex │ │ ├── scene-scaling.ogex │ │ ├── scene-transformation-concatenation.ogex │ │ ├── scene-transformation-metrics.ogex │ │ ├── scene-transformation.ogex │ │ ├── scene-translation.ogex │ │ ├── scene.ogex │ │ ├── texture-3d.ogex │ │ ├── texture-invalid.ogex │ │ ├── texture-mips.ogex │ │ ├── texture-unique.ogex │ │ └── texture.ogex │ ├── configure.h.cmake │ ├── importStaticPlugin.cpp │ └── openGexSpec.hpp ├── PlutoSvgImporter │ ├── CMakeLists.txt │ ├── PlutoSvgImporter.conf │ ├── PlutoSvgImporter.cpp │ ├── PlutoSvgImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── PlutoSvgImporterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── PngImageConverter │ ├── CMakeLists.txt │ ├── PngImageConverter.conf │ ├── PngImageConverter.cpp │ ├── PngImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── PngImageConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── gray.png │ │ └── rgb.png │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── PngImporter │ ├── CMakeLists.txt │ ├── PngImporter.conf │ ├── PngImporter.cpp │ ├── PngImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── PngImporterTest.cpp │ │ ├── README.md │ │ ├── configure.h.cmake │ │ ├── ga-binary-alpha-trns.png │ │ ├── ga-binary-alpha.png │ │ ├── ga.png │ │ ├── gray.png │ │ ├── gray16.png │ │ ├── gray4.png │ │ ├── rgb-palette.png │ │ ├── rgb-palette1.png │ │ ├── rgb.png │ │ ├── rgb16.png │ │ ├── rgba-binary-alpha-iphone.png │ │ ├── rgba-binary-alpha-trns.png │ │ ├── rgba-binary-alpha.png │ │ ├── rgba-linear.png │ │ ├── rgba-srgb.png │ │ └── rgba.png │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── PrimitiveImporter │ ├── CMakeLists.txt │ ├── PrimitiveImporter.conf │ ├── PrimitiveImporter.cpp │ ├── PrimitiveImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── PrimitiveImporterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── ResvgImporter │ ├── CMakeLists.txt │ ├── ResvgImporter.conf │ ├── ResvgImporter.cpp │ ├── ResvgImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── ResvgImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── empty.svg │ │ ├── external-embedded.svg │ │ ├── external-notfound.svg │ │ ├── external.svg │ │ ├── file-133dpi.png │ │ ├── file-48dpi.png │ │ ├── file.png │ │ ├── file.svg │ │ ├── file.svgz │ │ └── rgb.png │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── SpirvToolsShaderConverter │ ├── CMakeLists.txt │ ├── SpirvToolsConverter.conf │ ├── SpirvToolsConverter.cpp │ ├── SpirvToolsConverter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── SpirvToolsConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── triangle-shaders.noopt.spv │ │ ├── triangle-shaders.noopt.spvasm │ │ ├── triangle-shaders.spv │ │ └── triangle-shaders.spvasm │ ├── checkSpirvToolsVersion.cpp │ ├── configure.h.cmake │ ├── configureInternal.h.cmake │ └── importStaticPlugin.cpp ├── SpngImporter │ ├── CMakeLists.txt │ ├── SpngImporter.conf │ ├── SpngImporter.cpp │ ├── SpngImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── SpngImporterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StanfordImporter │ ├── CMakeLists.txt │ ├── StanfordImporter.conf │ ├── StanfordImporter.cpp │ ├── StanfordImporter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── StanfordImporterTest.cpp │ │ ├── ascii.ply │ │ ├── colors-not-all.ply │ │ ├── colors-not-same-type.ply │ │ ├── colors-not-tightly-packed.ply │ │ ├── colors-unsupported-type.ply │ │ ├── colors4-not-same-type.ply │ │ ├── colors4-not-tightly-packed.ply │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── crlf.ply │ │ ├── custom-components-be.ply │ │ ├── custom-components-be.ply.in │ │ ├── custom-components-duplicate.ply │ │ ├── custom-components-duplicate.ply.in │ │ ├── custom-components.ply │ │ ├── custom-components.ply.in │ │ ├── empty.ply │ │ ├── format-invalid.ply │ │ ├── format-missing.ply │ │ ├── format-too-late.ply │ │ ├── format-unsupported.ply │ │ ├── in2ply.py │ │ ├── incomplete-face-specification.ply │ │ ├── invalid-face-index-type.ply │ │ ├── invalid-face-property.ply │ │ ├── invalid-face-size-type.ply │ │ ├── invalid-face-type.ply │ │ ├── invalid-signature.ply │ │ ├── invalid-vertex-property.ply │ │ ├── invalid-vertex-type.ply │ │ ├── normals-not-all.ply │ │ ├── normals-not-same-type.ply │ │ ├── normals-not-tightly-packed.ply │ │ ├── normals-unsupported-type.ply │ │ ├── objectid-unsupported-type.ply │ │ ├── per-face-colors-be.ply │ │ ├── per-face-colors-be.ply.in │ │ ├── per-face-normals-objectid.ply │ │ ├── per-face-normals-objectid.ply.in │ │ ├── positions-char-colors4-ushort-texcoords-uchar-indices-short-be.ply │ │ ├── positions-char-colors4-ushort-texcoords-uchar-indices-short-be.ply.in │ │ ├── positions-colors-normals-texcoords-float-objectid-uint-indices-int-be.ply │ │ ├── positions-colors-normals-texcoords-float-objectid-uint-indices-int-be.ply.in │ │ ├── positions-colors-normals-texcoords-float-objectid-uint-indices-int.ply │ │ ├── positions-colors-normals-texcoords-float-objectid-uint-indices-int.ply.in │ │ ├── positions-colors4-float-indices-int.ply │ │ ├── positions-colors4-float-indices-int.ply.in │ │ ├── positions-colors4-normals-texcoords-float-indices-int-be-unaligned.ply │ │ ├── positions-colors4-normals-texcoords-float-indices-int-be-unaligned.ply.in │ │ ├── positions-float-indices-uint.ply │ │ ├── positions-float-indices-uint.ply.in │ │ ├── positions-missing.ply │ │ ├── positions-not-all.ply │ │ ├── positions-not-same-type.ply │ │ ├── positions-not-tightly-packed.ply │ │ ├── positions-short-colors-uchar-texcoords-ushort-indices-char.ply │ │ ├── positions-short-colors-uchar-texcoords-ushort-indices-char.ply.in │ │ ├── positions-uchar-normals-char-objectid-short-indices-ushort.ply │ │ ├── positions-uchar-normals-char-objectid-short-indices-ushort.ply.in │ │ ├── positions-unsupported-type.ply │ │ ├── positions-ushort-normals-short-objectid-uchar-indices-uchar-be.ply │ │ ├── positions-ushort-normals-short-objectid-uchar-indices-uchar-be.ply.in │ │ ├── texcoords-not-all.ply │ │ ├── texcoords-not-same-type.ply │ │ ├── texcoords-not-tightly-packed.ply │ │ ├── texcoords-unsupported-type.ply │ │ ├── triangle-fast-path-be.ply │ │ ├── triangle-fast-path-be.ply.in │ │ ├── unexpected-property.ply │ │ ├── unknown-element.ply │ │ ├── unknown-line.ply │ │ └── unsupported-face-size.ply │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StanfordSceneConverter │ ├── CMakeLists.txt │ ├── StanfordSceneConverter.conf │ ├── StanfordSceneConverter.cpp │ ├── StanfordSceneConverter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── StanfordSceneConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── empty-le.ply │ │ ├── indexed-triangle-strip-le.ply │ │ ├── indexed-uchar-be.ply │ │ ├── indexed-uchar-le.ply │ │ ├── indexed-uint-be.ply │ │ ├── indexed-uint-le.ply │ │ ├── indexed-ushort-be.ply │ │ ├── indexed-ushort-le.ply │ │ ├── nonindexed-all-attributes-be.ply │ │ ├── nonindexed-all-attributes-le.ply │ │ ├── three-component-color-le.ply │ │ └── triangle-fan-le.ply │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbDxtImageConverter │ ├── CMakeLists.txt │ ├── StbDxtImageConverter.conf │ ├── StbDxtImageConverter.cpp │ ├── StbDxtImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbDxtImageConverterTest.cpp │ │ ├── configure.h.cmake │ │ ├── ship-hq.bc3 │ │ ├── ship.bc1 │ │ ├── ship.bc3 │ │ └── ship.jpg │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbImageConverter │ ├── CMakeLists.txt │ ├── StbImageConverter.conf │ ├── StbImageConverter.cpp │ ├── StbImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbImageConverterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbImageImporter │ ├── CMakeLists.txt │ ├── StbImageImporter.conf │ ├── StbImageImporter.cpp │ ├── StbImageImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbImageImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── dispose_bgnd.gif │ │ ├── rgb.hdr │ │ └── rrr.hdr │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbResizeImageConverter │ ├── CMakeLists.txt │ ├── StbResizeImageConverter.conf │ ├── StbResizeImageConverter.cpp │ ├── StbResizeImageConverter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbResizeImageConverterTest.cpp │ │ └── configure.h.cmake │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbTrueTypeFont │ ├── CMakeLists.txt │ ├── StbTrueTypeFont.conf │ ├── StbTrueTypeFont.cpp │ ├── StbTrueTypeFont.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbTrueTypeFontTest.cpp │ │ ├── configure.h.cmake │ │ ├── glyph-cache-array0.png │ │ ├── glyph-cache-array1.png │ │ └── glyph-cache.png │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StbVorbisAudioImporter │ ├── CMakeLists.txt │ ├── StbVorbisImporter.conf │ ├── StbVorbisImporter.cpp │ ├── StbVorbisImporter.h │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── StbVorbisImporterTest.cpp │ │ ├── configure.h.cmake │ │ ├── mono16.ogg │ │ ├── stereo8.ogg │ │ ├── unsupportedChannelCount.ogg │ │ ├── wrongSignature.ogg │ │ └── zeroSamples.ogg │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── StlImporter │ ├── CMakeLists.txt │ ├── StlImporter.conf │ ├── StlImporter.cpp │ ├── StlImporter.h │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── StlImporterTest.cpp │ │ ├── ascii.stl │ │ ├── binary.stl │ │ ├── binary.stl.in │ │ ├── configure.h.cmake │ │ └── in2stl.py │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── TinyGltfImporter │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── TinyGltfImporterTest.cpp │ │ ├── animation-invalid-track-size-mismatch.gltf │ │ ├── animation-invalid.gltf │ │ ├── buffer-invalid-no-uri.glb │ │ ├── buffer-invalid-no-uri.gltf │ │ ├── buffer-invalid-notfound.glb │ │ ├── buffer-invalid-notfound.gltf │ │ ├── camera-invalid-type.gltf │ │ ├── configure.h.cmake │ │ ├── convert.sh │ │ ├── external-data.bin │ │ ├── external-data.bin.in │ │ ├── image-invalid-notfound.gltf │ │ ├── light-invalid-missing-spot.gltf │ │ ├── light-invalid-missing-type.gltf │ │ ├── light-invalid.gltf │ │ ├── light.gltf │ │ ├── material-clearcoat.gltf │ │ ├── material-common.gltf │ │ ├── material-invalid.gltf │ │ ├── material-metallicroughness.gltf │ │ ├── material-specularglossiness.gltf │ │ ├── mesh-duplicate-attributes.bin │ │ ├── mesh-duplicate-attributes.gltf │ │ ├── mesh-invalid-accessor-oob.gltf │ │ ├── mesh-invalid-index-accessor-oob.gltf │ │ ├── mesh-invalid.gltf │ │ ├── mesh-skin-attributes.bin │ │ ├── mesh-skin-attributes.bin.in │ │ ├── mesh-skin-attributes.gltf │ │ ├── resources.conf │ │ ├── scene-invalid.gltf │ │ ├── skin-invalid-no-joints.gltf │ │ ├── skin-invalid.gltf │ │ ├── texture-extensions.gltf │ │ ├── texture-invalid.gltf │ │ └── texture.gltf │ ├── TinyGltfImporter.conf │ ├── TinyGltfImporter.cpp │ ├── TinyGltfImporter.h │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── UfbxImporter │ ├── CMakeLists.txt │ ├── Test │ │ ├── .gitattributes │ │ ├── CMakeLists.txt │ │ ├── UfbxImporterTest.cpp │ │ ├── animation-interpolation.fbx │ │ ├── animation-layer-nonlinear-weight.fbx │ │ ├── animation-layer.fbx │ │ ├── animation-multi-clip.fbx │ │ ├── animation-pre-rotation.fbx │ │ ├── animation-rotation-pivot.fbx │ │ ├── animation-space-y-up-cm.fbx │ │ ├── animation-space-y-up-m.fbx │ │ ├── animation-space-z-up-cm.fbx │ │ ├── animation-space-z-up-m.fbx │ │ ├── animation-stacks.fbx │ │ ├── animation-visibility.fbx │ │ ├── bad-decay-lights.fbx │ │ ├── blender-default.fbx │ │ ├── blender-materials.fbx │ │ ├── cameras.fbx │ │ ├── configure.h.cmake │ │ ├── cube.mtl │ │ ├── cube.obj │ │ ├── geometric-transform.fbx │ │ ├── geometry-cache.fbx │ │ ├── image-3d.dds │ │ ├── image-3d.mtl │ │ ├── image-3d.obj │ │ ├── image-absolute-path.fbx │ │ ├── image-broken-embedded.fbx │ │ ├── image-broken-external.fbx │ │ ├── instanced-material.fbx │ │ ├── layered-pbr-textures.fbx │ │ ├── lights.fbx │ │ ├── max-material-physical.fbx │ │ ├── max-material-spec-gloss.fbx │ │ ├── maya-camera-light-orientation.fbx │ │ ├── maya-material-arnold.fbx │ │ ├── maya-material-phong.fbx │ │ ├── mesh-point-line.fbx │ │ ├── missing-mtl.obj │ │ ├── skinning-blender.fbx │ │ ├── skinning.fbx │ │ ├── static-skin.fbx │ │ ├── tex-black.png │ │ ├── tex-blue.png │ │ ├── tex-broken.png │ │ ├── tex-cyan.png │ │ ├── tex-green.png │ │ ├── tex-pink.png │ │ ├── tex-red.png │ │ ├── tex-white.png │ │ ├── tex-yellow.png │ │ ├── texture-transform.fbx │ │ ├── texture-wrap-modes.fbx │ │ ├── triangle.fbx │ │ ├── units-cm-z-up.fbx │ │ └── warning-cube.fbx │ ├── UfbxImporter.conf │ ├── UfbxImporter.cpp │ ├── UfbxImporter.h │ ├── UfbxMaterials.h │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── WebPImageConverter │ ├── CMakeLists.txt │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── WebPImageConverterTest.cpp │ │ └── configure.h.cmake │ ├── WebPImageConverter.conf │ ├── WebPImageConverter.cpp │ ├── WebPImageConverter.h │ ├── configure.h.cmake │ └── importStaticPlugin.cpp └── WebPImporter │ ├── CMakeLists.txt │ ├── Test │ ├── CMakeLists.txt │ ├── README.md │ ├── WebPImporterTest.cpp │ ├── animated.webp │ ├── configure.h.cmake │ ├── rgb-lossless.webp │ ├── rgb-lossy-0.webp │ ├── rgb-lossy-45.webp │ ├── rgb-lossy-90.webp │ ├── rgba-lossless.webp │ ├── rgba-lossy-0.webp │ ├── rgba-lossy-45.webp │ └── rgba-lossy-90.webp │ ├── WebPImporter.conf │ ├── WebPImporter.cpp │ ├── WebPImporter.h │ ├── configure.h.cmake │ └── importStaticPlugin.cpp ├── dummy.cpp └── external ├── CMakeLists.txt ├── basis-uncrapifier ├── README.md ├── image-loading-stubs.cpp ├── put-this-on-include-path │ └── dummy └── zstd │ └── zstd.h ├── bcdec └── bcdec.h ├── dr ├── dr_flac.h ├── dr_mp3.h └── dr_wav.h ├── etcdec └── etcdec.h ├── miniexr └── miniexr.h ├── stb ├── stb_dxt.h ├── stb_image.h ├── stb_image_resize2.h ├── stb_image_write.h ├── stb_truetype.h └── stb_vorbis.c └── ufbx ├── ufbx.c └── ufbx.h /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | ../package/ci/circleci.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/external/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/CREDITS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/README.md -------------------------------------------------------------------------------- /doc/building-plugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/building-plugins.dox -------------------------------------------------------------------------------- /doc/changelog-plugins-old.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/changelog-plugins-old.dox -------------------------------------------------------------------------------- /doc/changelog-plugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/changelog-plugins.dox -------------------------------------------------------------------------------- /doc/cmake-plugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/cmake-plugins.dox -------------------------------------------------------------------------------- /doc/credits.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/credits.dox -------------------------------------------------------------------------------- /doc/custom-buildsystems-plugins-order.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/custom-buildsystems-plugins-order.dot -------------------------------------------------------------------------------- /doc/custom-buildsystems-plugins.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/custom-buildsystems-plugins.dox -------------------------------------------------------------------------------- /doc/namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/namespaces.dox -------------------------------------------------------------------------------- /doc/snippets/BasisImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/snippets/BasisImporter.cpp -------------------------------------------------------------------------------- /doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /doc/snippets/GltfImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/snippets/GltfImporter.cpp -------------------------------------------------------------------------------- /doc/snippets/StbImageImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/doc/snippets/StbImageImporter.cpp -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/FindAssimp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindAssimp.cmake -------------------------------------------------------------------------------- /modules/FindBasisUniversal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindBasisUniversal.cmake -------------------------------------------------------------------------------- /modules/FindCorrade.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindCorrade.cmake -------------------------------------------------------------------------------- /modules/FindDevIL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindDevIL.cmake -------------------------------------------------------------------------------- /modules/FindFAAD2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindFAAD2.cmake -------------------------------------------------------------------------------- /modules/FindGlslang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindGlslang.cmake -------------------------------------------------------------------------------- /modules/FindHarfBuzz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindHarfBuzz.cmake -------------------------------------------------------------------------------- /modules/FindMagnum.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindMagnum.cmake -------------------------------------------------------------------------------- /modules/FindMagnumPlugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindMagnumPlugins.cmake -------------------------------------------------------------------------------- /modules/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindOpenEXR.cmake -------------------------------------------------------------------------------- /modules/FindResvg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindResvg.cmake -------------------------------------------------------------------------------- /modules/FindSpirvTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindSpirvTools.cmake -------------------------------------------------------------------------------- /modules/FindSpng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindSpng.cmake -------------------------------------------------------------------------------- /modules/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindWebP.cmake -------------------------------------------------------------------------------- /modules/FindZstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/FindZstd.cmake -------------------------------------------------------------------------------- /modules/MagnumPluginsConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/modules/MagnumPluginsConfig.cmake -------------------------------------------------------------------------------- /package/archlinux/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | *.src.tar.gz 3 | -------------------------------------------------------------------------------- /package/archlinux/.kateconfig: -------------------------------------------------------------------------------- 1 | kate-wildcard(PKGBUILD*): hl bash; 2 | -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-android-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-android-arm64 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-clang -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-addresssanitizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-clang-addresssanitizer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-libc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-clang-libc++ -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-threadsanitizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-clang-threadsanitizer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-coverage -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-emscripten-wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-emscripten-wasm -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-emscripten-wasm-webgl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-emscripten-wasm-webgl2 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-gcc48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-gcc48 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-mingw-w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/PKGBUILD-mingw-w64 -------------------------------------------------------------------------------- /package/archlinux/magnum-plugins-git/.gitignore: -------------------------------------------------------------------------------- 1 | magnum-plugins 2 | -------------------------------------------------------------------------------- /package/archlinux/magnum-plugins-git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/magnum-plugins-git/PKGBUILD -------------------------------------------------------------------------------- /package/archlinux/magnum-plugins/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/archlinux/magnum-plugins/PKGBUILD -------------------------------------------------------------------------------- /package/ci/android-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/android-x86.sh -------------------------------------------------------------------------------- /package/ci/appveyor-cache-reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/appveyor-cache-reset.txt -------------------------------------------------------------------------------- /package/ci/appveyor-desktop-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/appveyor-desktop-mingw.bat -------------------------------------------------------------------------------- /package/ci/appveyor-desktop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/appveyor-desktop.bat -------------------------------------------------------------------------------- /package/ci/appveyor-rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/appveyor-rt.bat -------------------------------------------------------------------------------- /package/ci/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/appveyor.yml -------------------------------------------------------------------------------- /package/ci/circleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/circleci.yml -------------------------------------------------------------------------------- /package/ci/emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/emscripten.sh -------------------------------------------------------------------------------- /package/ci/ios-simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/ios-simulator.sh -------------------------------------------------------------------------------- /package/ci/unix-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/ci/unix-desktop.sh -------------------------------------------------------------------------------- /package/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/.gitignore -------------------------------------------------------------------------------- /package/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/changelog -------------------------------------------------------------------------------- /package/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /package/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/control -------------------------------------------------------------------------------- /package/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/copyright -------------------------------------------------------------------------------- /package/debian/magnum-plugins-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/magnum-plugins-dev.install -------------------------------------------------------------------------------- /package/debian/magnum-plugins.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/magnum-plugins.install -------------------------------------------------------------------------------- /package/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/debian/rules -------------------------------------------------------------------------------- /package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/gentoo/dev-libs/magnum-plugins/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/gentoo/dev-libs/magnum-plugins/Manifest -------------------------------------------------------------------------------- /package/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/git/README.md -------------------------------------------------------------------------------- /package/homebrew/magnum-plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/homebrew/magnum-plugins.rb -------------------------------------------------------------------------------- /package/msys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/msys/.gitattributes -------------------------------------------------------------------------------- /package/msys/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/msys/PKGBUILD -------------------------------------------------------------------------------- /package/msys/magnum-plugins/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/msys/magnum-plugins/PKGBUILD -------------------------------------------------------------------------------- /package/rpm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/rpm/build.sh -------------------------------------------------------------------------------- /package/rpm/magnum-plugins.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/rpm/magnum-plugins.spec -------------------------------------------------------------------------------- /package/sync-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/package/sync-modules.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Implementation/formatPluginsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/Implementation/formatPluginsVersion.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Document.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Implementation/Parsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Implementation/Parsers.cpp -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Implementation/Parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Implementation/Parsers.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/OpenDdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/OpenDdl.cpp -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/OpenDdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/OpenDdl.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Property.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Structure.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Test/ParsersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Test/ParsersTest.cpp -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Test/Test.cpp -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Test/TypeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Test/TypeTest.cpp -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Type.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/Validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/Validation.h -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/configure.h.cmake -------------------------------------------------------------------------------- /src/Magnum/OpenDdl/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/OpenDdl/visibility.h -------------------------------------------------------------------------------- /src/Magnum/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Test/VersionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/Test/VersionTest.cpp -------------------------------------------------------------------------------- /src/Magnum/versionPlugins.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/Magnum/versionPlugins.h.cmake -------------------------------------------------------------------------------- /src/MagnumExternal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumExternal/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumExternal/TinyGltf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumExternal/TinyGltf/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumExternal/TinyGltf/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumExternal/TinyGltf/json.hpp -------------------------------------------------------------------------------- /src/MagnumExternal/TinyGltf/tiny_gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumExternal/TinyGltf/tiny_gltf.h -------------------------------------------------------------------------------- /src/MagnumPlugins/.kateconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/.kateconfig -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/AssimpImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/AssimpImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/AssimpImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/AssimpImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/animation.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/animation.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/animation.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/animation.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/b.png -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/camera.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/camera.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/empty.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/empty.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/empty.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/empty.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/g.png -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-3d.mtl: -------------------------------------------------------------------------------- 1 | newmtl Material 2 | map_Kd image-3d.dds 3 | -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-3d.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-3d.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-embedded.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-embedded.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-mips.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-mips.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-mips.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-mips.mtl -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/image-mips.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/image-mips.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/light-area.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/light-area.blend -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/light-area.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/light-area.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/light.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/light.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/line.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/line.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/material-color.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/material-color.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/material-raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/material-raw.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/material-raw.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/material-raw.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/material-raw.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/material-raw.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/mesh.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/mesh.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/points.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/points.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/polygon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/polygon.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/quad.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/quad.stl -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/r.png -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/scene+mesh.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/scene+mesh.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/scene-name.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/scene-name.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/scene.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/scene.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin-no-mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin-no-mesh.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin-no-mesh.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin-no-mesh.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin-shared.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin-shared.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin-shared.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin-shared.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin-shared.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin-shared.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin.blend -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/skin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/skin.md -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/y-up.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/y-up.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/y.png -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/Test/z-up.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/Test/z-up.dae -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/checkAssimpVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/checkAssimpVersion.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/AssimpImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AssimpImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/AstcImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/AstcImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/AstcImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/AstcImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/AstcImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/AstcImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/3x3x3.astc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/3x3x3.astc -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/8x8.astc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/8x8.astc -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/AstcImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/AstcImporterTest.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/AstcImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/AstcImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/BasisImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/BasisImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/BasisImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/BasisImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/BasisImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/BasisImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-63x27.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-63x27.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-63x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-63x27.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-64x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-64x32.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-linear.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-linear.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-linear.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-linear.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-noflip.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-noflip.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-noflip.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-noflip.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-pow2.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-pow2.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb-pow2.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb-pow2.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgb.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgb.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-13x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-13x31.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-15x6.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-15x6.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-15x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-15x6.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-27x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-27x27.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-31x13.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-31x13.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-31x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-31x13.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-3d-mips.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-3d-mips.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-3d-mips.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-3d-mips.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-3d.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-3d.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-3d.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-3d.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-63x27.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-63x27.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-63x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-63x27.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-64x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-64x32.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-6x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-6x15.png -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-array.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-array.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-array.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-array.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-cubemap.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-cubemap.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-cubemap.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-cubemap.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-pow2.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-pow2.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-pow2.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-pow2.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-uastc.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-uastc.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-uastc.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-uastc.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-video.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-video.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba-video.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba-video.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgba.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgba.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgbaf.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgbaf.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgbaf.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgbaf.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgbf.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgbf.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/Test/rgbf.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/Test/rgbf.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/BasisImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BasisImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/Test/bc6h.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/Test/bc6h.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/Test/bc6hs.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/Test/bc6hs.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/Test/rgb16f.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/Test/rgb16f.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/BcDecImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/BcDecImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/CgltfImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/CgltfImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/CgltfImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/CgltfImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/CgltfImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/CgltfImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/CgltfImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/CgltfImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/DdsImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/DdsImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/DdsImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/DdsImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/DdsImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/DdsImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/DxgiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/DxgiFormat.h -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/DdsImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/DdsImporterTest.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bc4snorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bc4snorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bc4unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bc4unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bc5snorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bc5snorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bc5unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bc5unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bgr8unorm-mips.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bgr8unorm-mips.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bgr8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bgr8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bgra8unorm-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bgra8unorm-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/bgrx8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/bgrx8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt1-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt1-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt1-cube-mips.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt1-cube-mips.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt1.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-ayuv.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-ayuv.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-bc7-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-bc7-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-bc7.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-bc7.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-format136.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-format136.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-format189.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-format189.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-r16f-cube.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-r16f-cube.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-r32i-mips.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-r32i-mips.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rg16f-1d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rg16f-1d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rg32f.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rg32f.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rg8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rg8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rgb32i.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rgb32i.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rgba16snorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rgba16snorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rgba32ui.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rgba32ui.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rgba8srgb.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rgba8srgb.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt10-rgba8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt10-rgba8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt3.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt3.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt4.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/dxt5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/dxt5.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/fourcc-114.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/fourcc-114.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/fourcc-117.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/fourcc-117.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/r8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/r8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/rgb8unorm-yup.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/rgb8unorm-yup.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/rgb8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/rgb8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/rgba8unorm-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/rgba8unorm-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/rgba8unorm-cube.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/rgba8unorm-cube.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/rgbx8unorm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/rgbx8unorm.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/unknown-format.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/unknown-format.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/Test/wrong-signature.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/Test/wrong-signature.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/DdsImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DdsImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DevIlImageImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DevIlImageImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DevIlImageImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DevIlImageImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DevIlImageImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DevIlImageImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/DrFlacImporter.conf: -------------------------------------------------------------------------------- 1 | provides=FlacAudioImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/DrFlacImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/DrFlacImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/DrFlacImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/DrFlacImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/mono16.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/mono16.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/mono24.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/mono24.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/mono32.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/mono32.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/mono8.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/mono8.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/quad16.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/quad16.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/quad24.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/quad24.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/stereo16.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/stereo16.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/stereo24.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/stereo24.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/Test/stereo8.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/Test/stereo8.flac -------------------------------------------------------------------------------- /src/MagnumPlugins/DrFlacAudioImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrFlacAudioImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/DrMp3Importer.conf: -------------------------------------------------------------------------------- 1 | provides=Mp3AudioImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/DrMp3Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/DrMp3Importer.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/DrMp3Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/DrMp3Importer.h -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/Test/mono16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/Test/mono16.mp3 -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/Test/stereo16.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/Test/stereo16.mp3 -------------------------------------------------------------------------------- /src/MagnumPlugins/DrMp3AudioImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrMp3AudioImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/DrWavImporter.conf: -------------------------------------------------------------------------------- 1 | provides=WavAudioImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/DrWavImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/DrWavImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/DrWavImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/DrWavImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/extension8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/extension8.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono16.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono24.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono24.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono32f.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono32f.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono8.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono8ALaw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono8ALaw.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/mono8MuLaw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/mono8MuLaw.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo12.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo16.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo24.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo24.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo32.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo32f.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo32f.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo64f.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo64f.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/Test/stereo8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/Test/stereo8.wav -------------------------------------------------------------------------------- /src/MagnumPlugins/DrWavAudioImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/DrWavAudioImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/Test/eac-r.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/Test/eac-r.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/Test/eac-rg.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/Test/eac-rg.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/EtcDecImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/EtcDecImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Faad2Importer.conf: -------------------------------------------------------------------------------- 1 | provides=AacAudioImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Faad2Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/Faad2Importer.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Faad2Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/Faad2Importer.h -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Test/error.aac: -------------------------------------------------------------------------------- 1 | nah this is not an aac file 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Test/mono.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/Test/mono.aac -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/Test/stereo.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/Test/stereo.aac -------------------------------------------------------------------------------- /src/MagnumPlugins/Faad2AudioImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/Faad2AudioImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/FreeTypeFont.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/FreeTypeFont.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/FreeTypeFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/FreeTypeFont.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/FreeTypeFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/FreeTypeFont.h -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/Test/FreeTypeFontTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/Test/FreeTypeFontTest.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/Test/Oxygen.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/Test/Oxygen.ttf -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/Test/glyph-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/Test/glyph-cache.png -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/FreeTypeFont/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/FreeTypeFont/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/GlslangShaderConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GlslangShaderConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/GlslangShaderConverter/Test/sub/directory/definitions.glsl: -------------------------------------------------------------------------------- 1 | #define DEFINITIONS_INCLUDED 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/GlslangShaderConverter/Test/sub/relative.glsl: -------------------------------------------------------------------------------- 1 | #define FLOAT_ZERO 0.0 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Gltf.h -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/GltfImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/GltfImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/GltfImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/GltfImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/GltfImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/GltfImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/GltfImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/GltfImporterTest.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/animation.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/animation.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/animation.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/animation.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/animation.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/animation.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/animation.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/animation.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/buffer-long-size.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/buffer-long-size.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/camera-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/camera-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/camera.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/camera.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/empty.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/empty.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/empty.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/empty.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/encoded-uris.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/encoded-uris.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/error.gltf: -------------------------------------------------------------------------------- 1 | { 2 | "asset": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/escaped-strings.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/escaped-strings.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/external-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/external-data.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/external-data.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/external-data.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/external-data.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/external-data.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/external-data.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/external-data.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/glb2gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/glb2gltf.py -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/gltf2basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/gltf2basis.py -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/gltf2embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/gltf2embedded.py -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/gltf2glb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/gltf2glb.py -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-2d-array.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-2d-array.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-2d-mips.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-2d-mips.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-basis.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-basis.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-basis.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-basis.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-buffer.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-buffer.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-buffer.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-buffer.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-embedded.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-embedded.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-embedded.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-embedded.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image.basis -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/image.png -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/in2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/in2bin.py -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/invalid-uri.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/invalid-uri.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/light-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/light-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/light.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/light.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-common.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-common.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-extras.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-extras.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-ior.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-ior.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-raw.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-raw.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-sheen.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-sheen.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-unlit.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-unlit.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/material-volume.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/material-volume.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-buffers.0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-buffers.0.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-buffers.1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-buffers.1.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-buffers.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-buffers.2.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-buffers.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-buffers.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-colors.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-colors.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-colors.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-colors.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-colors.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-colors.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-embedded.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-embedded.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-embedded.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-embedded.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-sparse.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-sparse.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-sparse.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-sparse.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh-sparse.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh-sparse.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/mesh.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/mesh.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/přívodní-šňůra.png -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/resources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/resources.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/scene-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/scene-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/scene.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin-embedded.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin-embedded.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin-embedded.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin-embedded.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/skin.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/skin.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texcoord-flip.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texcoord-flip.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texcoord-flip.bin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texcoord-flip.bin.in -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texcoord-flip.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texcoord-flip.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texture-invalid.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texture-invalid.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texture-ktx.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texture-ktx.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/texture.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/texture.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/Test/version-legacy.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/Test/version-legacy.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/decode.h -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/.editorconfig -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/empty.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/empty.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/empty.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/empty.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/image-3d.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/image-3d.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/image.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/image.0.png -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/image.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/image.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/image.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/image.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/mesh.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/mesh.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/mesh.glb -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/mesh.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/mesh.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/GltfSceneConverter/Test/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/GltfSceneConverter/Test/scene.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/HarfBuzzFont.h -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/HarfBuzzFont/scriptMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/HarfBuzzFont/scriptMapping.h -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/IcoImporter.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/IcoImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/IcoImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/IcoImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/IcoImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/bmp+png.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/bmp+png.ico -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/icon16x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/icon16x8.png -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/icon256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/icon256x256.png -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/icon32x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/icon32x64.png -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/png2ico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/png2ico.py -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/Test/pngs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/Test/pngs.ico -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/IcoImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/IcoImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImageConverter/Test/rgb-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImageConverter/Test/rgb-100.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImageConverter/Test/rgb-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImageConverter/Test/rgb-80.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/JpegImporter.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/JpegImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/JpegImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/JpegImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/JpegImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/Test/cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/Test/cmyk.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/Test/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/Test/gray.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/Test/rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/Test/rgb.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/JpegImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/JpegImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImageConverter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImageConverter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImageConverter/Test/dfd-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImageConverter/Test/dfd-data.bin -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/KtxHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/KtxHeader.h -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/KtxImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/KtxImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/KtxImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/KtxImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/KtxImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/KtxImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/1d-layers.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/1d-layers.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/1d-mipmaps.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/1d-mipmaps.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/1d.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/1d.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-d16.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-d16.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-d24s8.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-d24s8.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-d32fs8.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-d32fs8.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-layers.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-layers.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-mipmaps.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-mipmaps.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-rgb.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-rgb.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-rgb32.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-rgb32.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-rgba.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-rgba.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-rgbf32.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-rgbf32.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/2d-s8.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/2d-s8.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/3d-layers.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/3d-layers.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/3d-mipmaps.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/3d-mipmaps.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/3d.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/3d.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/bgr.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/bgr.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/bgra.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/bgra.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/black-1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/black-1d.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/black.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube+x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube+x.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube+y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube+y.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube+z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube+z.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube-x.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube-y.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cube-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cube-z.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/cubemap.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/cubemap.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/generate.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-16bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-16bit.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-1d.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-mip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-mip1.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-mip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-mip2.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-pot.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern-uneven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern-uneven.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/pattern.png -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/swizzle-bgr.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/swizzle-bgr.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/swizzle-bgra.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/swizzle-bgra.ktx2 -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/Test/version1.ktx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/Test/version1.ktx -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/formatMapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/formatMapping.hpp -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/formatMapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/formatMapping.py -------------------------------------------------------------------------------- /src/MagnumPlugins/KtxImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/KtxImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/LunaSvgImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/LunaSvgImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/LunaSvgImporter/LunaSvgImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/LunaSvgImporter/LunaSvgImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/LunaSvgImporter/LunaSvgImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/LunaSvgImporter/LunaSvgImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/LunaSvgImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/LunaSvgImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/LunaSvgImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/LunaSvgImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/MiniExrImageConverter/MiniExrImageConverter.conf: -------------------------------------------------------------------------------- 1 | provides=OpenExrImageConverter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/OpenExrImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/OpenExrImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/OpenExrImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/OpenExrImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/depth32f.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/depth32f.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/depth32ui.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/depth32ui.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/levels2D.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/levels2D.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/rg32ui.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/rg32ui.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/rgb16f.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/rgb16f.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/Test/rgba32f.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/Test/rgba32f.exr -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenExrImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenExrImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/OpenGex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/OpenGex.h -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/OpenGexImporter.conf: -------------------------------------------------------------------------------- 1 | depends=AnyImageImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/OpenGexImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/OpenGexImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/OpenGexImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/OpenGexImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/camera.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/camera.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/extension.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/extension.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/image-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/image-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/image-mips.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/image-mips.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/image.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/image.tga -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/light.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/light.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/material.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/material.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/mesh.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/mesh.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/scene.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/scene.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/Test/texture.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/Test/texture.ogex -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/OpenGexImporter/openGexSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/OpenGexImporter/openGexSpec.hpp -------------------------------------------------------------------------------- /src/MagnumPlugins/PlutoSvgImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PlutoSvgImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/PlutoSvgImporter/PlutoSvgImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PlutoSvgImporter/PlutoSvgImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/PlutoSvgImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PlutoSvgImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImageConverter/PngImageConverter.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImageConverter/Test/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImageConverter/Test/gray.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImageConverter/Test/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImageConverter/Test/rgb.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/PngImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/PngImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/PngImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/PngImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/PngImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/PngImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/ga.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/gray.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/gray16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/gray16.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/gray4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/gray4.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgb-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgb-palette.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgb-palette1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgb-palette1.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgb.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgb16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgb16.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgba-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgba-linear.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgba-srgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgba-srgb.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/Test/rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/Test/rgba.png -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/PngImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PngImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/PrimitiveImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PrimitiveImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/PrimitiveImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/PrimitiveImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/ResvgImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/ResvgImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/ResvgImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/ResvgImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/ResvgImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/ResvgImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/external.svg -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/file-133dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/file-133dpi.png -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/file-48dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/file-48dpi.png -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/file.png -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/file.svg -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/file.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/file.svgz -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/Test/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/Test/rgb.png -------------------------------------------------------------------------------- /src/MagnumPlugins/ResvgImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/ResvgImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/SpngImporter.conf: -------------------------------------------------------------------------------- 1 | provides=PngImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/SpngImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/SpngImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/SpngImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/SpngImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/SpngImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/SpngImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/StanfordImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/StanfordImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/ascii.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/Test/ascii.ply -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/convert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | for i in *.in; do 6 | ./in2ply.py ${i} 7 | done 8 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/crlf.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/Test/crlf.ply -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/empty.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/Test/empty.ply -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/format-invalid.ply: -------------------------------------------------------------------------------- 1 | ply 2 | format binary_big_endian 1.0 extradata 3 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/format-too-late.ply: -------------------------------------------------------------------------------- 1 | ply 2 | element face 1 3 | format binary_little_endian 1.0 4 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/format-unsupported.ply: -------------------------------------------------------------------------------- 1 | ply 2 | format binary_mixed_endian 1.0 3 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/in2ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/Test/in2ply.py -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/invalid-signature.ply: -------------------------------------------------------------------------------- 1 | bla 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/unexpected-property.ply: -------------------------------------------------------------------------------- 1 | ply 2 | format binary_little_endian 1.0 3 | property float x 4 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/Test/unknown-element.ply: -------------------------------------------------------------------------------- 1 | ply 2 | format binary_little_endian 1.0 3 | element edge 25 4 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StanfordImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StanfordImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StbDxtImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbDxtImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StbDxtImageConverter/Test/ship.bc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbDxtImageConverter/Test/ship.bc1 -------------------------------------------------------------------------------- /src/MagnumPlugins/StbDxtImageConverter/Test/ship.bc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbDxtImageConverter/Test/ship.bc3 -------------------------------------------------------------------------------- /src/MagnumPlugins/StbDxtImageConverter/Test/ship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbDxtImageConverter/Test/ship.jpg -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageConverter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageConverter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageImporter/StbImageImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageImporter/StbImageImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageImporter/Test/rgb.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageImporter/Test/rgb.hdr -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageImporter/Test/rrr.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageImporter/Test/rrr.hdr -------------------------------------------------------------------------------- /src/MagnumPlugins/StbImageImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbImageImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StbTrueTypeFont/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbTrueTypeFont/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StbTrueTypeFont/StbTrueTypeFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbTrueTypeFont/StbTrueTypeFont.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/StbTrueTypeFont/StbTrueTypeFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbTrueTypeFont/StbTrueTypeFont.h -------------------------------------------------------------------------------- /src/MagnumPlugins/StbTrueTypeFont/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbTrueTypeFont/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StbTrueTypeFont/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StbTrueTypeFont/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StbVorbisAudioImporter/StbVorbisImporter.conf: -------------------------------------------------------------------------------- 1 | provides=VorbisAudioImporter 2 | -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/StlImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/StlImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/StlImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/StlImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/StlImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/StlImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/ascii.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/ascii.stl -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/binary.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/binary.stl -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/binary.stl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/binary.stl.in -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/Test/in2stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/Test/in2stl.py -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/StlImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/StlImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/Test/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/Test/convert.sh -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/Test/light.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/Test/light.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/Test/texture.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/Test/texture.gltf -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/TinyGltfImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/TinyGltfImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/TinyGltfImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/TinyGltfImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/.gitattributes -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/cameras.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/cameras.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/cube.mtl -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/cube.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/image-3d.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/image-3d.dds -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/image-3d.mtl: -------------------------------------------------------------------------------- 1 | newmtl Material 2 | map_Kd image-3d.dds 3 | -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/image-3d.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/image-3d.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/lights.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/lights.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/missing-mtl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/missing-mtl.obj -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/skinning.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/skinning.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/static-skin.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/static-skin.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-black.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-blue.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-broken.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-cyan.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-green.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-pink.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-red.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-white.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/tex-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/tex-yellow.png -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/triangle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/triangle.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/units-cm-z-up.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/units-cm-z-up.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/Test/warning-cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/Test/warning-cube.fbx -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/UfbxImporter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/UfbxImporter.conf -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/UfbxImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/UfbxImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/UfbxImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/UfbxImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/UfbxMaterials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/UfbxMaterials.h -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/UfbxImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/UfbxImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImageConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImageConverter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/README.md -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/animated.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/animated.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/rgb-lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/rgb-lossless.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/rgb-lossy-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/rgb-lossy-0.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/rgb-lossy-45.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/rgb-lossy-45.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/rgb-lossy-90.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/rgb-lossy-90.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/Test/rgba-lossy-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/Test/rgba-lossy-0.webp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/WebPImporter.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/WebPImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/WebPImporter.cpp -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/WebPImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/WebPImporter.h -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/configure.h.cmake -------------------------------------------------------------------------------- /src/MagnumPlugins/WebPImporter/importStaticPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/MagnumPlugins/WebPImporter/importStaticPlugin.cpp -------------------------------------------------------------------------------- /src/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/dummy.cpp -------------------------------------------------------------------------------- /src/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/basis-uncrapifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/basis-uncrapifier/README.md -------------------------------------------------------------------------------- /src/external/basis-uncrapifier/put-this-on-include-path/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/external/basis-uncrapifier/zstd/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/basis-uncrapifier/zstd/zstd.h -------------------------------------------------------------------------------- /src/external/bcdec/bcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/bcdec/bcdec.h -------------------------------------------------------------------------------- /src/external/dr/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/dr/dr_flac.h -------------------------------------------------------------------------------- /src/external/dr/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/dr/dr_mp3.h -------------------------------------------------------------------------------- /src/external/dr/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/dr/dr_wav.h -------------------------------------------------------------------------------- /src/external/etcdec/etcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/etcdec/etcdec.h -------------------------------------------------------------------------------- /src/external/miniexr/miniexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/miniexr/miniexr.h -------------------------------------------------------------------------------- /src/external/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_dxt.h -------------------------------------------------------------------------------- /src/external/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_image.h -------------------------------------------------------------------------------- /src/external/stb/stb_image_resize2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_image_resize2.h -------------------------------------------------------------------------------- /src/external/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_image_write.h -------------------------------------------------------------------------------- /src/external/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_truetype.h -------------------------------------------------------------------------------- /src/external/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/stb/stb_vorbis.c -------------------------------------------------------------------------------- /src/external/ufbx/ufbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/ufbx/ufbx.c -------------------------------------------------------------------------------- /src/external/ufbx/ufbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-plugins/HEAD/src/external/ufbx/ufbx.h --------------------------------------------------------------------------------