├── .clang-format ├── .github └── workflows │ ├── cmake.yml │ ├── cmake.yml.license │ └── doxygen.yml ├── .gitignore ├── .gitmodules ├── 3rdParty └── CMakeLists.txt ├── CMakeLists.txt ├── Doxyfile ├── LICENSES ├── BSD-3-Clause.txt ├── CC-BY-4.0.txt └── LGPL-3.0-or-later.txt ├── README.md ├── examples ├── CMakeLists.txt ├── SimpleViewer │ ├── CMakeLists.txt │ ├── ControlPanel.qml │ ├── RiveInspectorView.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qml.qrc.license ├── hellorive │ ├── CMakeLists.txt │ ├── main.cpp │ └── main.qml └── rive │ ├── basyskom.riv │ ├── basyskom.riv.license │ ├── cannonball-man.riv │ ├── cannonball-man.riv.license │ ├── direct-blend-example.riv │ ├── direct-blend-example.riv.license │ ├── electrified-button.riv │ ├── electrified-button.riv.license │ ├── glow-grid.riv │ ├── glow-grid.riv.license │ ├── joystick.riv │ ├── joystick.riv.license │ ├── naridon-oni-fan-art.riv │ ├── naridon-oni-fan-art.riv.license │ ├── nested-artboards-demo.riv │ ├── nested-artboards-demo.riv.license │ ├── pathfinder.riv │ ├── pathfinder.riv.license │ ├── rivebot-transform.riv │ ├── rivebot-transform.riv.license │ ├── simple-strokes.riv │ ├── simple-strokes.riv.license │ ├── sith-de-mayo.riv │ ├── sith-the-mayo.riv.license │ ├── travel-icons-pack.riv │ ├── travel-icons-pack.riv.license │ ├── tree-demo.riv │ ├── tree-demo.riv.license │ ├── water-bar-demo.riv │ └── water-bar-demo.riv.license └── src └── RiveQtQuickItem ├── CMakeLists.txt ├── RiveQtQuickPlugin.qmltypes ├── RiveQtQuickPlugin.qmltypes.license ├── datatypes.h ├── qmldir ├── qmldir.license ├── renderer ├── riveqtfactory.cpp ├── riveqtfactory.h ├── riveqtfont.cpp ├── riveqtfont.h ├── riveqtpaint.cpp ├── riveqtpaint.h ├── riveqtpainterrenderer.cpp ├── riveqtpainterrenderer.h ├── riveqtrhirenderer.cpp ├── riveqtrhirenderer.h ├── riveqtutils.cpp └── riveqtutils.h ├── rhi ├── postprocessingsmaa.cpp ├── postprocessingsmaa.h ├── textures │ ├── AreaTex.h │ └── SearchTex.h ├── texturetargetnode.cpp └── texturetargetnode.h ├── riveqsgrendernode.cpp ├── riveqsgrendernode.h ├── riveqsgrhirendernode.cpp ├── riveqsgrhirendernode.h ├── riveqsgsoftwarerendernode.cpp ├── riveqsgsoftwarerendernode.h ├── riveqtpath.cpp ├── riveqtpath.h ├── riveqtquickitem.cpp ├── riveqtquickitem.h ├── riveqtquickplugin.cpp ├── riveqtquickplugin.h ├── rivequickpainteditem.cpp ├── rivequickpainteditem.h ├── rivestatemachineinput.cpp ├── rivestatemachineinput.h ├── rqqplogging.cpp ├── rqqplogging.h ├── shader.qrc ├── shader.qrc.license └── shaders └── qt6 ├── blendRiveTextureNode.frag ├── blendRiveTextureNode.vert ├── clipRiveTextureNode.frag ├── clipRiveTextureNode.vert ├── drawRiveTextureNode.frag ├── drawRiveTextureNode.vert ├── edges-luma.frag ├── edges.vert ├── finalDraw.frag ├── finalDraw.vert ├── smaa-blend.frag ├── smaa-blend.vert ├── smaa-weights.frag └── smaa-weights.vert /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.github/workflows/cmake.yml.license -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/3rdParty/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/LICENSES/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/SimpleViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/SimpleViewer/ControlPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/ControlPanel.qml -------------------------------------------------------------------------------- /examples/SimpleViewer/RiveInspectorView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/RiveInspectorView.qml -------------------------------------------------------------------------------- /examples/SimpleViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/main.cpp -------------------------------------------------------------------------------- /examples/SimpleViewer/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/main.qml -------------------------------------------------------------------------------- /examples/SimpleViewer/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/qml.qrc -------------------------------------------------------------------------------- /examples/SimpleViewer/qml.qrc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/SimpleViewer/qml.qrc.license -------------------------------------------------------------------------------- /examples/hellorive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/hellorive/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hellorive/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/hellorive/main.cpp -------------------------------------------------------------------------------- /examples/hellorive/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/hellorive/main.qml -------------------------------------------------------------------------------- /examples/rive/basyskom.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/basyskom.riv -------------------------------------------------------------------------------- /examples/rive/basyskom.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/basyskom.riv.license -------------------------------------------------------------------------------- /examples/rive/cannonball-man.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/cannonball-man.riv -------------------------------------------------------------------------------- /examples/rive/cannonball-man.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Juan Carlos https://rive.app/@JcToon/ 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /examples/rive/direct-blend-example.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/direct-blend-example.riv -------------------------------------------------------------------------------- /examples/rive/direct-blend-example.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Juan Carlos https://rive.app/@JcToon/ 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /examples/rive/electrified-button.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/electrified-button.riv -------------------------------------------------------------------------------- /examples/rive/electrified-button.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/electrified-button.riv.license -------------------------------------------------------------------------------- /examples/rive/glow-grid.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/glow-grid.riv -------------------------------------------------------------------------------- /examples/rive/glow-grid.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 https://rive.app/@alexa.olic 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /examples/rive/joystick.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/joystick.riv -------------------------------------------------------------------------------- /examples/rive/joystick.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/joystick.riv.license -------------------------------------------------------------------------------- /examples/rive/naridon-oni-fan-art.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/naridon-oni-fan-art.riv -------------------------------------------------------------------------------- /examples/rive/naridon-oni-fan-art.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/naridon-oni-fan-art.riv.license -------------------------------------------------------------------------------- /examples/rive/nested-artboards-demo.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/nested-artboards-demo.riv -------------------------------------------------------------------------------- /examples/rive/nested-artboards-demo.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/nested-artboards-demo.riv.license -------------------------------------------------------------------------------- /examples/rive/pathfinder.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/pathfinder.riv -------------------------------------------------------------------------------- /examples/rive/pathfinder.riv.license: -------------------------------------------------------------------------------- 1 | 2 | https://rive.app/@rockingelevator/ 3 | -------------------------------------------------------------------------------- /examples/rive/rivebot-transform.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/rivebot-transform.riv -------------------------------------------------------------------------------- /examples/rive/rivebot-transform.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/rivebot-transform.riv.license -------------------------------------------------------------------------------- /examples/rive/simple-strokes.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/simple-strokes.riv -------------------------------------------------------------------------------- /examples/rive/simple-strokes.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/simple-strokes.riv.license -------------------------------------------------------------------------------- /examples/rive/sith-de-mayo.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/sith-de-mayo.riv -------------------------------------------------------------------------------- /examples/rive/sith-the-mayo.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 https://rive.app/@Bobbeh/ 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | 5 | -------------------------------------------------------------------------------- /examples/rive/travel-icons-pack.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/travel-icons-pack.riv -------------------------------------------------------------------------------- /examples/rive/travel-icons-pack.riv.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/travel-icons-pack.riv.license -------------------------------------------------------------------------------- /examples/rive/tree-demo.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/tree-demo.riv -------------------------------------------------------------------------------- /examples/rive/tree-demo.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Juan Carlos https://rive.app/@JcToon/ 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /examples/rive/water-bar-demo.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/examples/rive/water-bar-demo.riv -------------------------------------------------------------------------------- /examples/rive/water-bar-demo.riv.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 Juan Carlos https://rive.app/@JcToon/ 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /src/RiveQtQuickItem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/CMakeLists.txt -------------------------------------------------------------------------------- /src/RiveQtQuickItem/RiveQtQuickPlugin.qmltypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/RiveQtQuickPlugin.qmltypes -------------------------------------------------------------------------------- /src/RiveQtQuickItem/RiveQtQuickPlugin.qmltypes.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/RiveQtQuickPlugin.qmltypes.license -------------------------------------------------------------------------------- /src/RiveQtQuickItem/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/datatypes.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/qmldir -------------------------------------------------------------------------------- /src/RiveQtQuickItem/qmldir.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/qmldir.license -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtfactory.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtfactory.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtfont.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtfont.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtpaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtpaint.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtpaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtpaint.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtpainterrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtpainterrenderer.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtpainterrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtpainterrenderer.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtrhirenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtrhirenderer.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtrhirenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtrhirenderer.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtutils.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/renderer/riveqtutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/renderer/riveqtutils.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/postprocessingsmaa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/postprocessingsmaa.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/postprocessingsmaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/postprocessingsmaa.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/textures/AreaTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/textures/AreaTex.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/textures/SearchTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/textures/SearchTex.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/texturetargetnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/texturetargetnode.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rhi/texturetargetnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rhi/texturetargetnode.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgrendernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgrendernode.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgrendernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgrendernode.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgrhirendernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgrhirendernode.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgrhirendernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgrhirendernode.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgsoftwarerendernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgsoftwarerendernode.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqsgsoftwarerendernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqsgsoftwarerendernode.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtpath.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtpath.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtquickitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtquickitem.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtquickitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtquickitem.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtquickplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtquickplugin.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/riveqtquickplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/riveqtquickplugin.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rivequickpainteditem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rivequickpainteditem.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rivequickpainteditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rivequickpainteditem.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rivestatemachineinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rivestatemachineinput.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rivestatemachineinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rivestatemachineinput.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rqqplogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rqqplogging.cpp -------------------------------------------------------------------------------- /src/RiveQtQuickItem/rqqplogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/rqqplogging.h -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shader.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shader.qrc -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shader.qrc.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shader.qrc.license -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/blendRiveTextureNode.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/blendRiveTextureNode.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/blendRiveTextureNode.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/blendRiveTextureNode.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/clipRiveTextureNode.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/clipRiveTextureNode.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/clipRiveTextureNode.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/clipRiveTextureNode.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/drawRiveTextureNode.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/drawRiveTextureNode.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/drawRiveTextureNode.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/drawRiveTextureNode.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/edges-luma.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/edges-luma.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/edges.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/edges.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/finalDraw.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/finalDraw.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/finalDraw.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/finalDraw.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/smaa-blend.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/smaa-blend.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/smaa-blend.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/smaa-blend.vert -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/smaa-weights.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/smaa-weights.frag -------------------------------------------------------------------------------- /src/RiveQtQuickItem/shaders/qt6/smaa-weights.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basysKom/RiveQtQuickPlugin/HEAD/src/RiveQtQuickItem/shaders/qt6/smaa-weights.vert --------------------------------------------------------------------------------