├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── CREDITS.md ├── README.md ├── artwork └── ui-icons.svg ├── doc ├── artwork │ ├── ui-baselayer-subdivided-quads.svg │ ├── ui-event-capture.svg │ ├── ui-eventlayer-drag-fallthrough.svg │ ├── ui-eventlayer-drag.svg │ ├── ui-eventlayer-tap-or-click.svg │ ├── ui-handle.svg │ ├── ui-node-hierarchy-another-tooltip.svg │ ├── ui-node-hierarchy-event.svg │ ├── ui-node-hierarchy.svg │ └── ui-textlayer-needle.svg ├── building-extras.dox ├── changelog-extras.dox ├── cmake-extras.dox ├── credits.dox ├── custom-buildsystems-extras-order.dot ├── custom-buildsystems-extras.dox ├── generated │ ├── CMakeLists.txt │ ├── balloon.jpg │ ├── mask-premultiplied.png │ ├── mask.svg │ ├── ui-baselayer.cpp │ ├── ui-debuglayer.cpp │ ├── ui-linelayer.cpp │ └── ui-textlayer.cpp ├── namespaces.dox ├── player.dox ├── player.jpg ├── snippets │ ├── CMakeLists.txt │ ├── README.md │ ├── Ui-gl.cpp │ ├── Ui-sdl2.cpp │ ├── Ui.cpp │ ├── ui-baselayer-subdivided-quads.svg │ ├── ui-debuglayer-abstractvisuallayer-style-names.ansi │ ├── ui-debuglayer-abstractvisuallayer.ansi │ ├── ui-debuglayer-baselayer.ansi │ ├── ui-debuglayer-eventlayer.ansi │ ├── ui-debuglayer-integration.ansi │ ├── ui-debuglayer-layoutlayer-style-names.ansi │ ├── ui-debuglayer-layoutlayer.ansi │ ├── ui-debuglayer-linelayer.ansi │ ├── ui-debuglayer-node-inspect-details.ansi │ ├── ui-debuglayer-node-inspect-names.ansi │ ├── ui-debuglayer-node-inspect.ansi │ ├── ui-debuglayer-nodeanimator-reverse.ansi │ ├── ui-debuglayer-nodeanimator.ansi │ ├── ui-debuglayer-textlayer.ansi │ ├── ui-event-capture.svg │ ├── ui-eventlayer-drag-fallthrough.svg │ ├── ui-eventlayer-drag.svg │ ├── ui-eventlayer-tap-or-click.svg │ ├── ui-handle.svg │ ├── ui-node-data.svg │ ├── ui-node-hierarchy-another.svg │ ├── ui-node-hierarchy-event-fallthrough.svg │ ├── ui-node-hierarchy-event.svg │ ├── ui-node-hierarchy-tooltip.svg │ └── ui-node-hierarchy.svg ├── ui-baselayer-flag-blur-alpha.png ├── ui-baselayer-flag-blur-textured-mask.png ├── ui-baselayer-flag-blur-textured.png ├── ui-baselayer-flag-blur.png ├── ui-baselayer-flag-default.png ├── ui-baselayer-style-color.png ├── ui-baselayer-style-outline-data-width.png ├── ui-baselayer-style-outline.png ├── ui-baselayer-style-padding.png ├── ui-baselayer-style-rounded-corners.png ├── ui-baselayer-style-textured.png ├── ui-debuglayer-node-highlight.png ├── ui-debuglayer-node-inspect.png ├── ui-debuglayer-node.png ├── ui-gallery.png ├── ui-linelayer-create.png ├── ui-linelayer-style-color.png ├── ui-linelayer-style-outline.png ├── ui-linelayer-style-smoothness.png ├── ui-textlayer-editing-color.png ├── ui-textlayer-editing-padding.png ├── ui-textlayer-editing-rounded.png ├── ui-textlayer-single-glyph.png ├── ui-textlayer-style-color.png ├── ui-textlayer-style-data-padding.png ├── ui-textlayer-style-features.png ├── ui-textlayer-style-offset-outline.png ├── ui-textlayer-style-smoothness.png ├── ui-textlayer-transformation.png └── ui.dox ├── modules ├── CMakeLists.txt ├── FindCorrade.cmake ├── FindMagnum.cmake ├── FindMagnumExtras.cmake ├── FindMagnumPlugins.cmake └── MagnumExtrasConfig.cmake ├── package ├── archlinux │ ├── .kateconfig │ ├── PKGBUILD │ ├── PKGBUILD-android-arm64 │ ├── PKGBUILD-clang-addresssanitizer │ ├── PKGBUILD-coverage │ ├── PKGBUILD-emscripten-wasm-webgl2 │ ├── PKGBUILD-es3 │ ├── PKGBUILD-mingw-w64 │ └── magnum-extras-git │ │ ├── .gitignore │ │ └── PKGBUILD ├── ci │ ├── android-x86-gles.sh │ ├── android-x86-vulkan.sh │ ├── appveyor-cache-reset.txt │ ├── appveyor-desktop-gles.bat │ ├── appveyor-desktop-mingw.bat │ ├── appveyor-desktop.bat │ ├── appveyor-rt.bat │ ├── appveyor.yml │ ├── circleci.yml │ ├── emscripten.sh │ ├── ios-simulator-gles.sh │ ├── unix-desktop-gles.sh │ ├── unix-desktop-vulkan.sh │ └── unix-desktop.sh ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── magnum-extras-dev.install │ ├── magnum-extras.install │ ├── rules │ └── source │ │ └── format ├── gentoo │ └── dev-libs │ │ └── magnum-extras │ │ ├── Manifest │ │ └── magnum-extras-9999.ebuild ├── git │ └── README.md ├── homebrew │ └── magnum-extras.rb ├── rpm │ ├── build.sh │ └── magnum-extras.spec └── sync-modules.sh └── src ├── CMakeLists.txt ├── Magnum ├── CMakeLists.txt ├── Test │ ├── CMakeLists.txt │ └── VersionTest.cpp ├── Ui │ ├── AbstractAnimator.cpp │ ├── AbstractAnimator.h │ ├── AbstractLayer.cpp │ ├── AbstractLayer.h │ ├── AbstractLayouter.cpp │ ├── AbstractLayouter.h │ ├── AbstractRenderer.cpp │ ├── AbstractRenderer.h │ ├── AbstractStyle.cpp │ ├── AbstractStyle.h │ ├── AbstractUserInterface.cpp │ ├── AbstractUserInterface.h │ ├── AbstractVisualLayer.cpp │ ├── AbstractVisualLayer.h │ ├── AbstractVisualLayerAnimator.cpp │ ├── AbstractVisualLayerAnimator.h │ ├── Anchor.cpp │ ├── Anchor.h │ ├── Application.h │ ├── BaseLayer.cpp │ ├── BaseLayer.h │ ├── BaseLayerAnimator.cpp │ ├── BaseLayerAnimator.h │ ├── BaseLayerGL.cpp │ ├── BaseLayerGL.h │ ├── BaseShader.frag │ ├── BaseShader.vert │ ├── BlurShader.frag │ ├── BlurShader.vert │ ├── Button.cpp │ ├── Button.h │ ├── CMakeLists.txt │ ├── DebugLayer.cpp │ ├── DebugLayer.h │ ├── DebugLayerGL.cpp │ ├── DebugLayerGL.h │ ├── DebugShader.frag │ ├── DebugShader.vert │ ├── Event.cpp │ ├── Event.h │ ├── EventLayer.cpp │ ├── EventLayer.h │ ├── GenericAnimator.cpp │ ├── GenericAnimator.h │ ├── Handle.cpp │ ├── Handle.h │ ├── Implementation │ │ ├── BlurShaderGL.h │ │ ├── abstractLayerState.h │ │ ├── abstractLayouterState.h │ │ ├── abstractUserInterface.h │ │ ├── abstractVisualLayerAnimatorState.h │ │ ├── abstractVisualLayerState.h │ │ ├── baseLayerState.h │ │ ├── baseStyleUniformsMcssDark.h │ │ ├── blurCoefficients.h │ │ ├── debugLayerState.h │ │ ├── layoutStyleMcssDark.h │ │ ├── lineLayerState.h │ │ ├── lineMiterLimit.h │ │ ├── orderNodesBreadthFirstInto.h │ │ ├── snapLayouter.h │ │ ├── textEditingStyleMcssDark.h │ │ ├── textLayerState.h │ │ ├── textStyleMcssDark.h │ │ ├── textStyleUniformsMcssDark.h │ │ └── userInterfaceState.h │ ├── Input.cpp │ ├── Input.h │ ├── Label.cpp │ ├── Label.h │ ├── LayoutLayer.cpp │ ├── LayoutLayer.h │ ├── LineLayer.cpp │ ├── LineLayer.h │ ├── LineLayerGL.cpp │ ├── LineLayerGL.h │ ├── LineShader.frag │ ├── LineShader.in.frag │ ├── LineShader.in.vert │ ├── LineShader.vert │ ├── MacOSXBundleInfo.plist.in │ ├── NodeAnimator.cpp │ ├── NodeAnimator.h │ ├── NodeFlags.cpp │ ├── NodeFlags.h │ ├── Panel.cpp │ ├── Panel.h │ ├── RendererGL.cpp │ ├── RendererGL.h │ ├── SnapLayouter.cpp │ ├── SnapLayouter.h │ ├── SourceSans3-Regular.otf │ ├── Style.cpp │ ├── Style.h │ ├── Style.hpp │ ├── Test │ │ ├── AbstractAnimatorTest.cpp │ │ ├── AbstractLayerTest.cpp │ │ ├── AbstractLayouterTest.cpp │ │ ├── AbstractRendererTest.cpp │ │ ├── AbstractStyleTest.cpp │ │ ├── AbstractUserInterfaceImplementationTest.cpp │ │ ├── AbstractUserInterfaceTest.cpp │ │ ├── AbstractVisualLayerStyleAnimatorTest.cpp │ │ ├── AbstractVisualLayerTest.cpp │ │ ├── AnchorTest.cpp │ │ ├── ApplicationGLTest.cpp │ │ ├── ApplicationTest.cpp │ │ ├── ApplicationTest.hpp │ │ ├── BaseLayerCpp14Test.cpp │ │ ├── BaseLayerGLBenchmark.cpp │ │ ├── BaseLayerGLTest.cpp │ │ ├── BaseLayerGL_Test.cpp │ │ ├── BaseLayerStyleAnimatorTest.cpp │ │ ├── BaseLayerTest.cpp │ │ ├── BaseLayerTestFiles │ │ │ ├── blur-16.png │ │ │ ├── blur-3.png │ │ │ ├── blur-31.png │ │ │ ├── blur-input.png │ │ │ ├── clipping-disabled.png │ │ │ ├── clipping-enabled.png │ │ │ ├── composite-background-blur-0.png │ │ │ ├── composite-background-blur-50-r31-80.png │ │ │ ├── composite-background-blur-50-r31-mask-colored-default.png │ │ │ ├── composite-background-blur-50-r31-mask-colored-mask.png │ │ │ ├── composite-background-blur-50-r31-mask-default.png │ │ │ ├── composite-background-blur-50-r31-mask-mask.png │ │ │ ├── composite-background-blur-50-r31-mask-outline-mask.png │ │ │ ├── composite-background-blur-50-r31.png │ │ │ ├── composite-background-blur-50-smooth.png │ │ │ ├── composite-background-blur-50.png │ │ │ ├── composite-background-blur-75-colored.png │ │ │ ├── composite-default-50.png │ │ │ ├── composite-node-rects-background-blur-r0.png │ │ │ ├── composite-node-rects-background-blur-r1.png │ │ │ ├── composite-node-rects-background-blur-r30.png │ │ │ ├── default-smooth.png │ │ │ ├── default.png │ │ │ ├── draw-order-composite-background-blur.png │ │ │ ├── draw-order-composite-default.png │ │ │ ├── draw-order.png │ │ │ ├── edge-smoothness-inner-larger.png │ │ │ ├── edge-smoothness-inner-smaller.png │ │ │ ├── edge-smoothness-same.png │ │ │ ├── gradient.png │ │ │ ├── mask-colored-premultiplied.png │ │ │ ├── mask-premultiplied.png │ │ │ ├── mask.svg │ │ │ ├── outline-different.png │ │ │ ├── outline-gradient.png │ │ │ ├── outline-rounded-corners-both-different.png │ │ │ ├── outline-rounded-corners-different-smoothness.png │ │ │ ├── outline-rounded-corners-inside.png │ │ │ ├── outline-same.png │ │ │ ├── rounded-corners-different.png │ │ │ ├── rounded-corners-same-hard.png │ │ │ ├── rounded-corners-same.png │ │ │ ├── textured-colored.png │ │ │ ├── textured-default.png │ │ │ ├── textured-mask-colored.png │ │ │ ├── textured-mask-outline-default.png │ │ │ ├── textured-mask-outline-mask.png │ │ │ ├── textured-mask.png │ │ │ └── textured.png │ │ ├── BlurShaderGLBenchmark.cpp │ │ ├── BlurShaderGLTest.cpp │ │ ├── BlurShaderGLTest.h │ │ ├── BlurShaderTest.cpp │ │ ├── ButtonTest.cpp │ │ ├── CMakeLists.txt │ │ ├── DebugLayerGLTest.cpp │ │ ├── DebugLayerTest.cpp │ │ ├── DebugLayerTestFiles │ │ │ ├── empty.png │ │ │ ├── node-highlight.png │ │ │ ├── node-inspect-highlight-color.png │ │ │ └── node-inspect.png │ │ ├── EmscriptenApplicationTest.cpp │ │ ├── EmscriptenApplicationTest.html │ │ ├── EventLayerTest.cpp │ │ ├── EventTest.cpp │ │ ├── GenericAnimatorTest.cpp │ │ ├── GlfwApplicationTest.cpp │ │ ├── HandleTest.cpp │ │ ├── InputTest.cpp │ │ ├── LabelTest.cpp │ │ ├── LayoutLayerTest.cpp │ │ ├── LineLayerCpp14Test.cpp │ │ ├── LineLayerGLTest.cpp │ │ ├── LineLayerGL_Test.cpp │ │ ├── LineLayerTest.cpp │ │ ├── LineLayerTestFiles │ │ │ ├── butt-bevel.png │ │ │ ├── color.png │ │ │ ├── default.png │ │ │ ├── draw-order.png │ │ │ ├── loop.png │ │ │ ├── round-bevel.png │ │ │ ├── smooth.png │ │ │ ├── square-miter.png │ │ │ ├── strip.png │ │ │ └── triangle-miter-limit.png │ │ ├── NodeAnimatorCpp14Test.cpp │ │ ├── NodeAnimatorTest.cpp │ │ ├── NodeFlagsTest.cpp │ │ ├── PanelTest.cpp │ │ ├── RendererGLTest.cpp │ │ ├── RendererGL_Test.cpp │ │ ├── Sdl2ApplicationTest.cpp │ │ ├── Sdl2ApplicationTest.html │ │ ├── SnapLayouterTest.cpp │ │ ├── StressTest.cpp │ │ ├── StressTest.html │ │ ├── StyleGLTest.cpp │ │ ├── StyleTest.cpp │ │ ├── StyleTestFiles │ │ │ ├── mcss-dark-button-icon.png │ │ │ ├── mcss-dark-button-text-icon.png │ │ │ ├── mcss-dark-button-text.png │ │ │ ├── mcss-dark-input.png │ │ │ ├── mcss-dark-label-icon.png │ │ │ ├── mcss-dark-label-text.png │ │ │ └── mcss-dark-panel.png │ │ ├── TextLayerCpp14Test.cpp │ │ ├── TextLayerGLBenchmark.cpp │ │ ├── TextLayerGLTest.cpp │ │ ├── TextLayerGL_Test.cpp │ │ ├── TextLayerStyleAnimatorTest.cpp │ │ ├── TextLayerTest.cpp │ │ ├── TextLayerTestFiles │ │ │ ├── clipping-disabled-editable.png │ │ │ ├── clipping-disabled.png │ │ │ ├── clipping-enabled-editable.png │ │ │ ├── clipping-enabled.png │ │ │ ├── colored-cursor-selection-rounded-smooth.png │ │ │ ├── colored-cursor-selection-text-rounded.png │ │ │ ├── colored-cursor-selection-text.png │ │ │ ├── colored-cursor-selection.png │ │ │ ├── colored-cursor.png │ │ │ ├── colored-glyph.png │ │ │ ├── colored-selection.png │ │ │ ├── colored.png │ │ │ ├── default-glyph.png │ │ │ ├── default-selection.png │ │ │ ├── default.png │ │ │ ├── distancefield-colored.png │ │ │ ├── distancefield-default.png │ │ │ ├── distancefield-dilate-oob.png │ │ │ ├── distancefield-dilate-outline-cursor-selection-text.png │ │ │ ├── distancefield-dilate-outline.png │ │ │ ├── distancefield-dilate.png │ │ │ ├── distancefield-empty.png │ │ │ ├── distancefield-erode.png │ │ │ ├── distancefield-smooth.png │ │ │ ├── distancefield-width-smoothness.png │ │ │ ├── draw-order-editable.png │ │ │ └── draw-order.png │ │ ├── TextPropertiesTest.cpp │ │ ├── UserInterfaceGLTest.cpp │ │ ├── UserInterfaceGL_Test.cpp │ │ ├── UserInterfaceTest.cpp │ │ ├── WidgetTest.cpp │ │ ├── WidgetTester.hpp │ │ └── configure.h.cmake │ ├── TextEditingShader.frag │ ├── TextEditingShader.vert │ ├── TextLayer.cpp │ ├── TextLayer.h │ ├── TextLayerAnimator.cpp │ ├── TextLayerAnimator.h │ ├── TextLayerGL.cpp │ ├── TextLayerGL.h │ ├── TextProperties.cpp │ ├── TextProperties.h │ ├── TextShader.frag │ ├── TextShader.vert │ ├── Ui.h │ ├── UserInterface.cpp │ ├── UserInterface.h │ ├── UserInterfaceGL.cpp │ ├── UserInterfaceGL.h │ ├── Widget.cpp │ ├── Widget.h │ ├── WindowsHiDPI.manifest │ ├── WindowsHiDPI.rc │ ├── compatibility.glsl │ ├── configure.h.cmake │ ├── icons.png │ ├── resources-gl.conf │ ├── resources.conf │ ├── ui-gallery.cpp │ ├── ui-gallery.html │ └── visibility.h └── versionExtras.h.cmake ├── main └── AndroidManifest.xml └── player ├── AbstractPlayer.h ├── CMakeLists.txt ├── DepthReinterpretShader.frag ├── DepthReinterpretShader.vert ├── ImagePlayer.cpp ├── LoadImage.cpp ├── LoadImage.h ├── Player.cpp ├── ScenePlayer.cpp ├── WindowsHiDPI.manifest ├── WindowsHiDPI.rc ├── artwork ├── README.md ├── default.blend └── default.glb ├── magnum-player.desktop ├── player.html └── resources.conf /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | ../package/ci/circleci.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/CREDITS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/README.md -------------------------------------------------------------------------------- /artwork/ui-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/artwork/ui-icons.svg -------------------------------------------------------------------------------- /doc/artwork/ui-baselayer-subdivided-quads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-baselayer-subdivided-quads.svg -------------------------------------------------------------------------------- /doc/artwork/ui-event-capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-event-capture.svg -------------------------------------------------------------------------------- /doc/artwork/ui-eventlayer-drag-fallthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-eventlayer-drag-fallthrough.svg -------------------------------------------------------------------------------- /doc/artwork/ui-eventlayer-drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-eventlayer-drag.svg -------------------------------------------------------------------------------- /doc/artwork/ui-eventlayer-tap-or-click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-eventlayer-tap-or-click.svg -------------------------------------------------------------------------------- /doc/artwork/ui-handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-handle.svg -------------------------------------------------------------------------------- /doc/artwork/ui-node-hierarchy-another-tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-node-hierarchy-another-tooltip.svg -------------------------------------------------------------------------------- /doc/artwork/ui-node-hierarchy-event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-node-hierarchy-event.svg -------------------------------------------------------------------------------- /doc/artwork/ui-node-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-node-hierarchy.svg -------------------------------------------------------------------------------- /doc/artwork/ui-textlayer-needle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/artwork/ui-textlayer-needle.svg -------------------------------------------------------------------------------- /doc/building-extras.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/building-extras.dox -------------------------------------------------------------------------------- /doc/changelog-extras.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/changelog-extras.dox -------------------------------------------------------------------------------- /doc/cmake-extras.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/cmake-extras.dox -------------------------------------------------------------------------------- /doc/credits.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/credits.dox -------------------------------------------------------------------------------- /doc/custom-buildsystems-extras-order.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/custom-buildsystems-extras-order.dot -------------------------------------------------------------------------------- /doc/custom-buildsystems-extras.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/custom-buildsystems-extras.dox -------------------------------------------------------------------------------- /doc/generated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/CMakeLists.txt -------------------------------------------------------------------------------- /doc/generated/balloon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/balloon.jpg -------------------------------------------------------------------------------- /doc/generated/mask-premultiplied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/mask-premultiplied.png -------------------------------------------------------------------------------- /doc/generated/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/mask.svg -------------------------------------------------------------------------------- /doc/generated/ui-baselayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/ui-baselayer.cpp -------------------------------------------------------------------------------- /doc/generated/ui-debuglayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/ui-debuglayer.cpp -------------------------------------------------------------------------------- /doc/generated/ui-linelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/ui-linelayer.cpp -------------------------------------------------------------------------------- /doc/generated/ui-textlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/generated/ui-textlayer.cpp -------------------------------------------------------------------------------- /doc/namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/namespaces.dox -------------------------------------------------------------------------------- /doc/player.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/player.dox -------------------------------------------------------------------------------- /doc/player.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/player.jpg -------------------------------------------------------------------------------- /doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /doc/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/README.md -------------------------------------------------------------------------------- /doc/snippets/Ui-gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/Ui-gl.cpp -------------------------------------------------------------------------------- /doc/snippets/Ui-sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/Ui-sdl2.cpp -------------------------------------------------------------------------------- /doc/snippets/Ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/Ui.cpp -------------------------------------------------------------------------------- /doc/snippets/ui-baselayer-subdivided-quads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-baselayer-subdivided-quads.svg -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-abstractvisuallayer-style-names.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-abstractvisuallayer-style-names.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-abstractvisuallayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-abstractvisuallayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-baselayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-baselayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-eventlayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-eventlayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-integration.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-integration.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-layoutlayer-style-names.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-layoutlayer-style-names.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-layoutlayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-layoutlayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-linelayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-linelayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-node-inspect-details.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-node-inspect-details.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-node-inspect-names.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-node-inspect-names.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-node-inspect.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-node-inspect.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-nodeanimator-reverse.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-nodeanimator-reverse.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-nodeanimator.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-nodeanimator.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-debuglayer-textlayer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-debuglayer-textlayer.ansi -------------------------------------------------------------------------------- /doc/snippets/ui-event-capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-event-capture.svg -------------------------------------------------------------------------------- /doc/snippets/ui-eventlayer-drag-fallthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-eventlayer-drag-fallthrough.svg -------------------------------------------------------------------------------- /doc/snippets/ui-eventlayer-drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-eventlayer-drag.svg -------------------------------------------------------------------------------- /doc/snippets/ui-eventlayer-tap-or-click.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-eventlayer-tap-or-click.svg -------------------------------------------------------------------------------- /doc/snippets/ui-handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-handle.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-data.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-hierarchy-another.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-hierarchy-another.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-hierarchy-event-fallthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-hierarchy-event-fallthrough.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-hierarchy-event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-hierarchy-event.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-hierarchy-tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-hierarchy-tooltip.svg -------------------------------------------------------------------------------- /doc/snippets/ui-node-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/snippets/ui-node-hierarchy.svg -------------------------------------------------------------------------------- /doc/ui-baselayer-flag-blur-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-flag-blur-alpha.png -------------------------------------------------------------------------------- /doc/ui-baselayer-flag-blur-textured-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-flag-blur-textured-mask.png -------------------------------------------------------------------------------- /doc/ui-baselayer-flag-blur-textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-flag-blur-textured.png -------------------------------------------------------------------------------- /doc/ui-baselayer-flag-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-flag-blur.png -------------------------------------------------------------------------------- /doc/ui-baselayer-flag-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-flag-default.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-color.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-outline-data-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-outline-data-width.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-outline.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-padding.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-rounded-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-rounded-corners.png -------------------------------------------------------------------------------- /doc/ui-baselayer-style-textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-baselayer-style-textured.png -------------------------------------------------------------------------------- /doc/ui-debuglayer-node-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-debuglayer-node-highlight.png -------------------------------------------------------------------------------- /doc/ui-debuglayer-node-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-debuglayer-node-inspect.png -------------------------------------------------------------------------------- /doc/ui-debuglayer-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-debuglayer-node.png -------------------------------------------------------------------------------- /doc/ui-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-gallery.png -------------------------------------------------------------------------------- /doc/ui-linelayer-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-linelayer-create.png -------------------------------------------------------------------------------- /doc/ui-linelayer-style-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-linelayer-style-color.png -------------------------------------------------------------------------------- /doc/ui-linelayer-style-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-linelayer-style-outline.png -------------------------------------------------------------------------------- /doc/ui-linelayer-style-smoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-linelayer-style-smoothness.png -------------------------------------------------------------------------------- /doc/ui-textlayer-editing-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-editing-color.png -------------------------------------------------------------------------------- /doc/ui-textlayer-editing-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-editing-padding.png -------------------------------------------------------------------------------- /doc/ui-textlayer-editing-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-editing-rounded.png -------------------------------------------------------------------------------- /doc/ui-textlayer-single-glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-single-glyph.png -------------------------------------------------------------------------------- /doc/ui-textlayer-style-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-style-color.png -------------------------------------------------------------------------------- /doc/ui-textlayer-style-data-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-style-data-padding.png -------------------------------------------------------------------------------- /doc/ui-textlayer-style-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-style-features.png -------------------------------------------------------------------------------- /doc/ui-textlayer-style-offset-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-style-offset-outline.png -------------------------------------------------------------------------------- /doc/ui-textlayer-style-smoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-style-smoothness.png -------------------------------------------------------------------------------- /doc/ui-textlayer-transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui-textlayer-transformation.png -------------------------------------------------------------------------------- /doc/ui.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/doc/ui.dox -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/FindCorrade.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/FindCorrade.cmake -------------------------------------------------------------------------------- /modules/FindMagnum.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/FindMagnum.cmake -------------------------------------------------------------------------------- /modules/FindMagnumExtras.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/FindMagnumExtras.cmake -------------------------------------------------------------------------------- /modules/FindMagnumPlugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/FindMagnumPlugins.cmake -------------------------------------------------------------------------------- /modules/MagnumExtrasConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/modules/MagnumExtrasConfig.cmake -------------------------------------------------------------------------------- /package/archlinux/.kateconfig: -------------------------------------------------------------------------------- 1 | kate-wildcard(PKGBUILD*): hl bash; 2 | -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-android-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-android-arm64 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-addresssanitizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-clang-addresssanitizer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-coverage -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-emscripten-wasm-webgl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-emscripten-wasm-webgl2 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-es3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-es3 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-mingw-w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/PKGBUILD-mingw-w64 -------------------------------------------------------------------------------- /package/archlinux/magnum-extras-git/.gitignore: -------------------------------------------------------------------------------- 1 | magnum-plugins 2 | -------------------------------------------------------------------------------- /package/archlinux/magnum-extras-git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/archlinux/magnum-extras-git/PKGBUILD -------------------------------------------------------------------------------- /package/ci/android-x86-gles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/android-x86-gles.sh -------------------------------------------------------------------------------- /package/ci/android-x86-vulkan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/android-x86-vulkan.sh -------------------------------------------------------------------------------- /package/ci/appveyor-cache-reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor-cache-reset.txt -------------------------------------------------------------------------------- /package/ci/appveyor-desktop-gles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor-desktop-gles.bat -------------------------------------------------------------------------------- /package/ci/appveyor-desktop-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor-desktop-mingw.bat -------------------------------------------------------------------------------- /package/ci/appveyor-desktop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor-desktop.bat -------------------------------------------------------------------------------- /package/ci/appveyor-rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor-rt.bat -------------------------------------------------------------------------------- /package/ci/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/appveyor.yml -------------------------------------------------------------------------------- /package/ci/circleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/circleci.yml -------------------------------------------------------------------------------- /package/ci/emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/emscripten.sh -------------------------------------------------------------------------------- /package/ci/ios-simulator-gles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/ios-simulator-gles.sh -------------------------------------------------------------------------------- /package/ci/unix-desktop-gles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/unix-desktop-gles.sh -------------------------------------------------------------------------------- /package/ci/unix-desktop-vulkan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/unix-desktop-vulkan.sh -------------------------------------------------------------------------------- /package/ci/unix-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/ci/unix-desktop.sh -------------------------------------------------------------------------------- /package/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/changelog -------------------------------------------------------------------------------- /package/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /package/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/control -------------------------------------------------------------------------------- /package/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/copyright -------------------------------------------------------------------------------- /package/debian/magnum-extras-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/magnum-extras-dev.install -------------------------------------------------------------------------------- /package/debian/magnum-extras.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/magnum-extras.install -------------------------------------------------------------------------------- /package/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/debian/rules -------------------------------------------------------------------------------- /package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/gentoo/dev-libs/magnum-extras/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/gentoo/dev-libs/magnum-extras/Manifest -------------------------------------------------------------------------------- /package/gentoo/dev-libs/magnum-extras/magnum-extras-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/gentoo/dev-libs/magnum-extras/magnum-extras-9999.ebuild -------------------------------------------------------------------------------- /package/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/git/README.md -------------------------------------------------------------------------------- /package/homebrew/magnum-extras.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/homebrew/magnum-extras.rb -------------------------------------------------------------------------------- /package/rpm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/rpm/build.sh -------------------------------------------------------------------------------- /package/rpm/magnum-extras.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/rpm/magnum-extras.spec -------------------------------------------------------------------------------- /package/sync-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/package/sync-modules.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Test/VersionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Test/VersionTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractLayouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractLayouter.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractLayouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractLayouter.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractRenderer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractRenderer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractStyle.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractStyle.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractUserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractUserInterface.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractUserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractUserInterface.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractVisualLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractVisualLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractVisualLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractVisualLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractVisualLayerAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractVisualLayerAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/AbstractVisualLayerAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/AbstractVisualLayerAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Anchor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Anchor.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Anchor.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Application.h -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayerAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayerAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayerAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayerAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayerGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayerGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseLayerGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseLayerGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/BaseShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BaseShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/BlurShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BlurShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/BlurShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/BlurShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Button.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Button.h -------------------------------------------------------------------------------- /src/Magnum/Ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugLayerGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugLayerGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugLayerGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugLayerGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/DebugShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/DebugShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Event.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Event.h -------------------------------------------------------------------------------- /src/Magnum/Ui/EventLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/EventLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/EventLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/EventLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/GenericAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/GenericAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/GenericAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/GenericAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Handle.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Handle.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/BlurShaderGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/BlurShaderGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/abstractLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/abstractLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/abstractLayouterState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/abstractLayouterState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/abstractUserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/abstractUserInterface.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/abstractVisualLayerAnimatorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/abstractVisualLayerAnimatorState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/abstractVisualLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/abstractVisualLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/baseLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/baseLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/baseStyleUniformsMcssDark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/baseStyleUniformsMcssDark.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/blurCoefficients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/blurCoefficients.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/debugLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/debugLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/layoutStyleMcssDark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/layoutStyleMcssDark.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/lineLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/lineLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/lineMiterLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/lineMiterLimit.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/orderNodesBreadthFirstInto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/orderNodesBreadthFirstInto.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/snapLayouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/snapLayouter.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/textEditingStyleMcssDark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/textEditingStyleMcssDark.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/textLayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/textLayerState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/textStyleMcssDark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/textStyleMcssDark.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/textStyleUniformsMcssDark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/textStyleUniformsMcssDark.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Implementation/userInterfaceState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Implementation/userInterfaceState.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Input.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Input.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Label.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Label.h -------------------------------------------------------------------------------- /src/Magnum/Ui/LayoutLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LayoutLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/LayoutLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LayoutLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/LineLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/LineLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/LineLayerGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineLayerGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/LineLayerGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineLayerGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/LineShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/LineShader.in.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineShader.in.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/LineShader.in.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineShader.in.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/LineShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/LineShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /src/Magnum/Ui/NodeAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/NodeAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/NodeAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/NodeAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/NodeFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/NodeFlags.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/NodeFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/NodeFlags.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Panel.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Panel.h -------------------------------------------------------------------------------- /src/Magnum/Ui/RendererGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/RendererGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/RendererGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/RendererGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/SnapLayouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/SnapLayouter.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/SnapLayouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/SnapLayouter.h -------------------------------------------------------------------------------- /src/Magnum/Ui/SourceSans3-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/SourceSans3-Regular.otf -------------------------------------------------------------------------------- /src/Magnum/Ui/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Style.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Style.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Style.hpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractLayouterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractLayouterTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractRendererTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractRendererTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractStyleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractStyleTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractUserInterfaceImplementationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractUserInterfaceImplementationTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractUserInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractUserInterfaceTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractVisualLayerStyleAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractVisualLayerStyleAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AbstractVisualLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AbstractVisualLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/AnchorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/AnchorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/ApplicationGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/ApplicationGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/ApplicationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/ApplicationTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/ApplicationTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/ApplicationTest.hpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerCpp14Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerGLBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerGLBenchmark.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerGL_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerGL_Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerStyleAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerStyleAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/blur-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/blur-16.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/blur-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/blur-3.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/blur-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/blur-31.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/blur-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/blur-input.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/clipping-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/clipping-disabled.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/clipping-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/clipping-enabled.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-0.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-80.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-colored-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-colored-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-colored-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-colored-mask.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-mask.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-outline-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31-mask-outline-mask.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-r31.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50-smooth.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-50.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-75-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-background-blur-75-colored.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-default-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-default-50.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r0.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r1.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/composite-node-rects-background-blur-r30.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/default-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/default-smooth.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order-composite-background-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order-composite-background-blur.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order-composite-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order-composite-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/draw-order.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-inner-larger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-inner-larger.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-inner-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-inner-smaller.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/edge-smoothness-same.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/gradient.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/mask-colored-premultiplied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/mask-colored-premultiplied.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/mask-premultiplied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/mask-premultiplied.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/mask.svg -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-different.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-different.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-gradient.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-both-different.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-both-different.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-different-smoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-different-smoothness.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-rounded-corners-inside.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/outline-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/outline-same.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-different.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-different.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-same-hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-same-hard.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/rounded-corners-same.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-colored.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-colored.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-outline-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-outline-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-outline-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask-outline-mask.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured-mask.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BaseLayerTestFiles/textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BaseLayerTestFiles/textured.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BlurShaderGLBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BlurShaderGLBenchmark.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BlurShaderGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BlurShaderGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BlurShaderGLTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BlurShaderGLTest.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/BlurShaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/BlurShaderTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/ButtonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/ButtonTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerTestFiles/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerTestFiles/empty.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerTestFiles/node-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerTestFiles/node-highlight.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerTestFiles/node-inspect-highlight-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerTestFiles/node-inspect-highlight-color.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/DebugLayerTestFiles/node-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/DebugLayerTestFiles/node-inspect.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/EmscriptenApplicationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/EmscriptenApplicationTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/EmscriptenApplicationTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/EmscriptenApplicationTest.html -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/EventLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/EventLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/EventTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/EventTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/GenericAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/GenericAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/GlfwApplicationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/GlfwApplicationTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/HandleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/HandleTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/InputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/InputTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LabelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LabelTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LayoutLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LayoutLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerCpp14Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerGL_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerGL_Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/butt-bevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/butt-bevel.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/color.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/draw-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/draw-order.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/loop.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/round-bevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/round-bevel.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/smooth.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/square-miter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/square-miter.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/strip.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/LineLayerTestFiles/triangle-miter-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/LineLayerTestFiles/triangle-miter-limit.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/NodeAnimatorCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/NodeAnimatorCpp14Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/NodeAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/NodeAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/NodeFlagsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/NodeFlagsTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/PanelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/PanelTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/RendererGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/RendererGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/RendererGL_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/RendererGL_Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/Sdl2ApplicationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/Sdl2ApplicationTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/Sdl2ApplicationTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/Sdl2ApplicationTest.html -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/SnapLayouterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/SnapLayouterTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StressTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StressTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StressTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StressTest.html -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-icon.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-text-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-text-icon.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-button-text.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-input.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-label-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-label-icon.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-label-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-label-text.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/StyleTestFiles/mcss-dark-panel.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerCpp14Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerGLBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerGLBenchmark.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerGL_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerGL_Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerStyleAnimatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerStyleAnimatorTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/clipping-disabled-editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/clipping-disabled-editable.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/clipping-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/clipping-disabled.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/clipping-enabled-editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/clipping-enabled-editable.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/clipping-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/clipping-enabled.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-rounded-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-rounded-smooth.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-text-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-text-rounded.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection-text.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor-selection.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-cursor.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-glyph.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored-selection.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/colored.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/default-glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/default-glyph.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/default-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/default-selection.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-colored.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-default.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-oob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-oob.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-outline-cursor-selection-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-outline-cursor-selection-text.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate-outline.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-dilate.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-empty.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-erode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-erode.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-smooth.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-width-smoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/distancefield-width-smoothness.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/draw-order-editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/draw-order-editable.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextLayerTestFiles/draw-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextLayerTestFiles/draw-order.png -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/TextPropertiesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/TextPropertiesTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/UserInterfaceGLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/UserInterfaceGLTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/UserInterfaceGL_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/UserInterfaceGL_Test.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/UserInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/UserInterfaceTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/WidgetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/WidgetTest.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/WidgetTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/WidgetTester.hpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Magnum/Ui/TextEditingShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextEditingShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/TextEditingShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextEditingShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayer.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayer.h -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayerAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayerAnimator.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayerAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayerAnimator.h -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayerGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayerGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/TextLayerGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextLayerGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/TextProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextProperties.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/TextProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextProperties.h -------------------------------------------------------------------------------- /src/Magnum/Ui/TextShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextShader.frag -------------------------------------------------------------------------------- /src/Magnum/Ui/TextShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/TextShader.vert -------------------------------------------------------------------------------- /src/Magnum/Ui/Ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Ui.h -------------------------------------------------------------------------------- /src/Magnum/Ui/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/UserInterface.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/UserInterface.h -------------------------------------------------------------------------------- /src/Magnum/Ui/UserInterfaceGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/UserInterfaceGL.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/UserInterfaceGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/UserInterfaceGL.h -------------------------------------------------------------------------------- /src/Magnum/Ui/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Widget.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/Widget.h -------------------------------------------------------------------------------- /src/Magnum/Ui/WindowsHiDPI.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/WindowsHiDPI.manifest -------------------------------------------------------------------------------- /src/Magnum/Ui/WindowsHiDPI.rc: -------------------------------------------------------------------------------- 1 | 1 RT_MANIFEST "WindowsHiDPI.manifest" 2 | -------------------------------------------------------------------------------- /src/Magnum/Ui/compatibility.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/compatibility.glsl -------------------------------------------------------------------------------- /src/Magnum/Ui/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/configure.h.cmake -------------------------------------------------------------------------------- /src/Magnum/Ui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/icons.png -------------------------------------------------------------------------------- /src/Magnum/Ui/resources-gl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/resources-gl.conf -------------------------------------------------------------------------------- /src/Magnum/Ui/resources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/resources.conf -------------------------------------------------------------------------------- /src/Magnum/Ui/ui-gallery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/ui-gallery.cpp -------------------------------------------------------------------------------- /src/Magnum/Ui/ui-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/ui-gallery.html -------------------------------------------------------------------------------- /src/Magnum/Ui/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/Ui/visibility.h -------------------------------------------------------------------------------- /src/Magnum/versionExtras.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/Magnum/versionExtras.h.cmake -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/player/AbstractPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/AbstractPlayer.h -------------------------------------------------------------------------------- /src/player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/CMakeLists.txt -------------------------------------------------------------------------------- /src/player/DepthReinterpretShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/DepthReinterpretShader.frag -------------------------------------------------------------------------------- /src/player/DepthReinterpretShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/DepthReinterpretShader.vert -------------------------------------------------------------------------------- /src/player/ImagePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/ImagePlayer.cpp -------------------------------------------------------------------------------- /src/player/LoadImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/LoadImage.cpp -------------------------------------------------------------------------------- /src/player/LoadImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/LoadImage.h -------------------------------------------------------------------------------- /src/player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/Player.cpp -------------------------------------------------------------------------------- /src/player/ScenePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/ScenePlayer.cpp -------------------------------------------------------------------------------- /src/player/WindowsHiDPI.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/WindowsHiDPI.manifest -------------------------------------------------------------------------------- /src/player/WindowsHiDPI.rc: -------------------------------------------------------------------------------- 1 | 1 RT_MANIFEST "WindowsHiDPI.manifest" 2 | -------------------------------------------------------------------------------- /src/player/artwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/artwork/README.md -------------------------------------------------------------------------------- /src/player/artwork/default.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/artwork/default.blend -------------------------------------------------------------------------------- /src/player/artwork/default.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/artwork/default.glb -------------------------------------------------------------------------------- /src/player/magnum-player.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/magnum-player.desktop -------------------------------------------------------------------------------- /src/player/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/player.html -------------------------------------------------------------------------------- /src/player/resources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/magnum-extras/HEAD/src/player/resources.conf --------------------------------------------------------------------------------