├── .gemini ├── Examples.txt ├── Instructions.md ├── REFERENCE.md └── ReShade.fxh ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── GEMINI.md ├── LICENSE ├── README.md ├── _config.yml └── shaders ├── cAutoExposure.fx ├── cAutoExposureBloom.fx ├── cBlend.fx ├── cBlur.fxh ├── cBlurH.fx ├── cBlurV.fx ├── cCAS.fx ├── cCheckerBoard.fx ├── cChromaticity.fx ├── cDLAA.fx ├── cDots.fx ├── cEnsor.fx ├── cFXAA.fx ├── cFlow.fx ├── cGhost.fx ├── cGray.fx ├── cLens.fx ├── cLetterBox.fx ├── cMotionBlur.fx ├── cMotionStabilization.fx ├── cNoiseBlur.fx ├── cNormalize.fx ├── cQuantize.fx ├── cRCAS.fx ├── cSolidColor.fx ├── cThreshold.fx ├── cTransform.fx ├── kContour.fx ├── kDatamosh.fx ├── kMirror.fx └── shared ├── cBlend.fxh ├── cBlur.fxh ├── cCamera.fxh ├── cColor.fxh ├── cComposite.fxh ├── cEdge.fxh ├── cLens.fxh ├── cMath.fxh ├── cMotionEstimation.fxh ├── cShade.fxh └── cShadeHDR.fxh /.gemini/Examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/.gemini/Examples.txt -------------------------------------------------------------------------------- /.gemini/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/.gemini/Instructions.md -------------------------------------------------------------------------------- /.gemini/REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/.gemini/REFERENCE.md -------------------------------------------------------------------------------- /.gemini/ReShade.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/.gemini/ReShade.fxh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/_config.yml -------------------------------------------------------------------------------- /shaders/cAutoExposure.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cAutoExposure.fx -------------------------------------------------------------------------------- /shaders/cAutoExposureBloom.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cAutoExposureBloom.fx -------------------------------------------------------------------------------- /shaders/cBlend.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cBlend.fx -------------------------------------------------------------------------------- /shaders/cBlur.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cBlur.fxh -------------------------------------------------------------------------------- /shaders/cBlurH.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cBlurH.fx -------------------------------------------------------------------------------- /shaders/cBlurV.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cBlurV.fx -------------------------------------------------------------------------------- /shaders/cCAS.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cCAS.fx -------------------------------------------------------------------------------- /shaders/cCheckerBoard.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cCheckerBoard.fx -------------------------------------------------------------------------------- /shaders/cChromaticity.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cChromaticity.fx -------------------------------------------------------------------------------- /shaders/cDLAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cDLAA.fx -------------------------------------------------------------------------------- /shaders/cDots.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cDots.fx -------------------------------------------------------------------------------- /shaders/cEnsor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cEnsor.fx -------------------------------------------------------------------------------- /shaders/cFXAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cFXAA.fx -------------------------------------------------------------------------------- /shaders/cFlow.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cFlow.fx -------------------------------------------------------------------------------- /shaders/cGhost.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cGhost.fx -------------------------------------------------------------------------------- /shaders/cGray.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cGray.fx -------------------------------------------------------------------------------- /shaders/cLens.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cLens.fx -------------------------------------------------------------------------------- /shaders/cLetterBox.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cLetterBox.fx -------------------------------------------------------------------------------- /shaders/cMotionBlur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cMotionBlur.fx -------------------------------------------------------------------------------- /shaders/cMotionStabilization.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cMotionStabilization.fx -------------------------------------------------------------------------------- /shaders/cNoiseBlur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cNoiseBlur.fx -------------------------------------------------------------------------------- /shaders/cNormalize.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cNormalize.fx -------------------------------------------------------------------------------- /shaders/cQuantize.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cQuantize.fx -------------------------------------------------------------------------------- /shaders/cRCAS.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cRCAS.fx -------------------------------------------------------------------------------- /shaders/cSolidColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cSolidColor.fx -------------------------------------------------------------------------------- /shaders/cThreshold.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cThreshold.fx -------------------------------------------------------------------------------- /shaders/cTransform.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/cTransform.fx -------------------------------------------------------------------------------- /shaders/kContour.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/kContour.fx -------------------------------------------------------------------------------- /shaders/kDatamosh.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/kDatamosh.fx -------------------------------------------------------------------------------- /shaders/kMirror.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/kMirror.fx -------------------------------------------------------------------------------- /shaders/shared/cBlend.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cBlend.fxh -------------------------------------------------------------------------------- /shaders/shared/cBlur.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cBlur.fxh -------------------------------------------------------------------------------- /shaders/shared/cCamera.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cCamera.fxh -------------------------------------------------------------------------------- /shaders/shared/cColor.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cColor.fxh -------------------------------------------------------------------------------- /shaders/shared/cComposite.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cComposite.fxh -------------------------------------------------------------------------------- /shaders/shared/cEdge.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cEdge.fxh -------------------------------------------------------------------------------- /shaders/shared/cLens.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cLens.fxh -------------------------------------------------------------------------------- /shaders/shared/cMath.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cMath.fxh -------------------------------------------------------------------------------- /shaders/shared/cMotionEstimation.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cMotionEstimation.fxh -------------------------------------------------------------------------------- /shaders/shared/cShade.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cShade.fxh -------------------------------------------------------------------------------- /shaders/shared/cShadeHDR.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papadanku/CShade/HEAD/shaders/shared/cShadeHDR.fxh --------------------------------------------------------------------------------