├── DepthRenderTarget.qml ├── Mat.qml ├── OffscreenLayer.qml ├── README.md ├── Scene.qml ├── TextureRenderTarget.qml ├── TextureRenderTargetMS.qml ├── compositor.frag ├── compositor.vert ├── compositor_ms.frag ├── depth.frag ├── depth.vert ├── main.cpp ├── main.qml ├── q3dpostproc.pro ├── q3dpostproc.qrc ├── scene.vert ├── scene_o.frag └── scene_t.frag /DepthRenderTarget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/DepthRenderTarget.qml -------------------------------------------------------------------------------- /Mat.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/Mat.qml -------------------------------------------------------------------------------- /OffscreenLayer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/OffscreenLayer.qml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/README.md -------------------------------------------------------------------------------- /Scene.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/Scene.qml -------------------------------------------------------------------------------- /TextureRenderTarget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/TextureRenderTarget.qml -------------------------------------------------------------------------------- /TextureRenderTargetMS.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/TextureRenderTargetMS.qml -------------------------------------------------------------------------------- /compositor.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/compositor.frag -------------------------------------------------------------------------------- /compositor.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/compositor.vert -------------------------------------------------------------------------------- /compositor_ms.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/compositor_ms.frag -------------------------------------------------------------------------------- /depth.frag: -------------------------------------------------------------------------------- 1 | #version 330 core 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /depth.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/depth.vert -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/main.qml -------------------------------------------------------------------------------- /q3dpostproc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/q3dpostproc.pro -------------------------------------------------------------------------------- /q3dpostproc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/q3dpostproc.qrc -------------------------------------------------------------------------------- /scene.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/scene.vert -------------------------------------------------------------------------------- /scene_o.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/scene_o.frag -------------------------------------------------------------------------------- /scene_t.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/q3dpostproc/HEAD/scene_t.frag --------------------------------------------------------------------------------