├── LICENSE ├── README.md ├── Shaders ├── AspectRatioComposition.fx ├── ColorIsolation.fx ├── ColorfulPoster.fx ├── Comic.fx ├── HotsamplingHelper.fx ├── MeshEdges.fx ├── MultiTonePoster.fx ├── RemoveTint.fx ├── RetroTint.fx └── dev │ ├── AdaptiveTint.fx │ ├── Canvas.fxh │ ├── ColorIsolation2.fx │ ├── Composition.fx │ ├── DrawOverlay.fx │ ├── Stats.fx │ ├── Stats.fxh │ ├── Template.fx │ └── Tools.fxh └── Textures ├── alpha-checkerboard.png └── neutral_lut.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/README.md -------------------------------------------------------------------------------- /Shaders/AspectRatioComposition.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/AspectRatioComposition.fx -------------------------------------------------------------------------------- /Shaders/ColorIsolation.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/ColorIsolation.fx -------------------------------------------------------------------------------- /Shaders/ColorfulPoster.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/ColorfulPoster.fx -------------------------------------------------------------------------------- /Shaders/Comic.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/Comic.fx -------------------------------------------------------------------------------- /Shaders/HotsamplingHelper.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/HotsamplingHelper.fx -------------------------------------------------------------------------------- /Shaders/MeshEdges.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/MeshEdges.fx -------------------------------------------------------------------------------- /Shaders/MultiTonePoster.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/MultiTonePoster.fx -------------------------------------------------------------------------------- /Shaders/RemoveTint.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/RemoveTint.fx -------------------------------------------------------------------------------- /Shaders/RetroTint.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/RetroTint.fx -------------------------------------------------------------------------------- /Shaders/dev/AdaptiveTint.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/AdaptiveTint.fx -------------------------------------------------------------------------------- /Shaders/dev/Canvas.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Canvas.fxh -------------------------------------------------------------------------------- /Shaders/dev/ColorIsolation2.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/ColorIsolation2.fx -------------------------------------------------------------------------------- /Shaders/dev/Composition.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Composition.fx -------------------------------------------------------------------------------- /Shaders/dev/DrawOverlay.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/DrawOverlay.fx -------------------------------------------------------------------------------- /Shaders/dev/Stats.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Stats.fx -------------------------------------------------------------------------------- /Shaders/dev/Stats.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Stats.fxh -------------------------------------------------------------------------------- /Shaders/dev/Template.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Template.fx -------------------------------------------------------------------------------- /Shaders/dev/Tools.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Shaders/dev/Tools.fxh -------------------------------------------------------------------------------- /Textures/alpha-checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Textures/alpha-checkerboard.png -------------------------------------------------------------------------------- /Textures/neutral_lut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daodan317081/reshade-shaders/HEAD/Textures/neutral_lut.png --------------------------------------------------------------------------------