├── .gitignore ├── LICENSE ├── README.md ├── Shaders ├── ACES.fxh ├── AdaptiveTonemapper.fx ├── ArcaneBloom.fx ├── ArcaneBloom.fxh ├── ArtisticVignette.fx ├── AspectRatioSuite.fx ├── CRT_Lottes.fx ├── CRT_Lottes.fxh ├── CRT_Yee64.fx ├── CRT_Yeetron.fx ├── Checkerboard.fx ├── ColorLab.fx ├── ColorLab.fxh ├── Cursor.fx ├── DepthAlpha.fx ├── Dither.fx ├── FXShaders │ ├── API.fxh │ ├── AspectRatio.fxh │ ├── Blending.fxh │ ├── Canvas.fxh │ ├── Common.fxh │ ├── Convolution.fxh │ ├── Digits.fxh │ ├── Dithering.fxh │ ├── KeyCodes.fxh │ ├── Math.fxh │ ├── Tonemap.fxh │ └── Transform.fxh ├── Flashlight.fx ├── FlexibleCA.fx ├── FocalDOF.fx ├── FramerateLimiter.fx ├── GrainSpread.fx ├── HexLensFlare.fx ├── KeyCodes.fxh ├── LiquidLens.fx ├── MBMB.fx ├── MagicHDR.fx ├── MinimalColorGrading.fx ├── MultiFX.fx ├── NeoBloom.fx ├── NormalMap.fx ├── Overlay.fx ├── PiecewiseFilmicTonemap.fx ├── Pong.fx ├── RetroFog.fx ├── SCurve.fx ├── Sketch.fx ├── TrackingRays.fx ├── UnrealLens.fx ├── Unsharp.fx ├── VirtualResolution.fx └── WhitepointFixer.fx └── Textures ├── ArcaneBloom_Dirt.png ├── Cursor.png ├── DigitMap.png ├── MagicBloom_Dirt.png ├── MatCap.png ├── NeoBloom_LensDirt.png ├── NormalMap.png ├── Overlay.png ├── Pong.png └── Sketch_Shadow.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/README.md -------------------------------------------------------------------------------- /Shaders/ACES.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ACES.fxh -------------------------------------------------------------------------------- /Shaders/AdaptiveTonemapper.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/AdaptiveTonemapper.fx -------------------------------------------------------------------------------- /Shaders/ArcaneBloom.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ArcaneBloom.fx -------------------------------------------------------------------------------- /Shaders/ArcaneBloom.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ArcaneBloom.fxh -------------------------------------------------------------------------------- /Shaders/ArtisticVignette.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ArtisticVignette.fx -------------------------------------------------------------------------------- /Shaders/AspectRatioSuite.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/AspectRatioSuite.fx -------------------------------------------------------------------------------- /Shaders/CRT_Lottes.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/CRT_Lottes.fx -------------------------------------------------------------------------------- /Shaders/CRT_Lottes.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/CRT_Lottes.fxh -------------------------------------------------------------------------------- /Shaders/CRT_Yee64.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/CRT_Yee64.fx -------------------------------------------------------------------------------- /Shaders/CRT_Yeetron.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/CRT_Yeetron.fx -------------------------------------------------------------------------------- /Shaders/Checkerboard.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Checkerboard.fx -------------------------------------------------------------------------------- /Shaders/ColorLab.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ColorLab.fx -------------------------------------------------------------------------------- /Shaders/ColorLab.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/ColorLab.fxh -------------------------------------------------------------------------------- /Shaders/Cursor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Cursor.fx -------------------------------------------------------------------------------- /Shaders/DepthAlpha.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/DepthAlpha.fx -------------------------------------------------------------------------------- /Shaders/Dither.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Dither.fx -------------------------------------------------------------------------------- /Shaders/FXShaders/API.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/API.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/AspectRatio.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/AspectRatio.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Blending.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Blending.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Canvas.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Canvas.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Common.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Common.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Convolution.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Convolution.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Digits.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Digits.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Dithering.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Dithering.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/KeyCodes.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/KeyCodes.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Math.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Math.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Tonemap.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Tonemap.fxh -------------------------------------------------------------------------------- /Shaders/FXShaders/Transform.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FXShaders/Transform.fxh -------------------------------------------------------------------------------- /Shaders/Flashlight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Flashlight.fx -------------------------------------------------------------------------------- /Shaders/FlexibleCA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FlexibleCA.fx -------------------------------------------------------------------------------- /Shaders/FocalDOF.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FocalDOF.fx -------------------------------------------------------------------------------- /Shaders/FramerateLimiter.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/FramerateLimiter.fx -------------------------------------------------------------------------------- /Shaders/GrainSpread.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/GrainSpread.fx -------------------------------------------------------------------------------- /Shaders/HexLensFlare.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/HexLensFlare.fx -------------------------------------------------------------------------------- /Shaders/KeyCodes.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/KeyCodes.fxh -------------------------------------------------------------------------------- /Shaders/LiquidLens.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/LiquidLens.fx -------------------------------------------------------------------------------- /Shaders/MBMB.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/MBMB.fx -------------------------------------------------------------------------------- /Shaders/MagicHDR.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/MagicHDR.fx -------------------------------------------------------------------------------- /Shaders/MinimalColorGrading.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/MinimalColorGrading.fx -------------------------------------------------------------------------------- /Shaders/MultiFX.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/MultiFX.fx -------------------------------------------------------------------------------- /Shaders/NeoBloom.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/NeoBloom.fx -------------------------------------------------------------------------------- /Shaders/NormalMap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/NormalMap.fx -------------------------------------------------------------------------------- /Shaders/Overlay.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Overlay.fx -------------------------------------------------------------------------------- /Shaders/PiecewiseFilmicTonemap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/PiecewiseFilmicTonemap.fx -------------------------------------------------------------------------------- /Shaders/Pong.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Pong.fx -------------------------------------------------------------------------------- /Shaders/RetroFog.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/RetroFog.fx -------------------------------------------------------------------------------- /Shaders/SCurve.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/SCurve.fx -------------------------------------------------------------------------------- /Shaders/Sketch.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Sketch.fx -------------------------------------------------------------------------------- /Shaders/TrackingRays.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/TrackingRays.fx -------------------------------------------------------------------------------- /Shaders/UnrealLens.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/UnrealLens.fx -------------------------------------------------------------------------------- /Shaders/Unsharp.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/Unsharp.fx -------------------------------------------------------------------------------- /Shaders/VirtualResolution.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/VirtualResolution.fx -------------------------------------------------------------------------------- /Shaders/WhitepointFixer.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Shaders/WhitepointFixer.fx -------------------------------------------------------------------------------- /Textures/ArcaneBloom_Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/ArcaneBloom_Dirt.png -------------------------------------------------------------------------------- /Textures/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/Cursor.png -------------------------------------------------------------------------------- /Textures/DigitMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/DigitMap.png -------------------------------------------------------------------------------- /Textures/MagicBloom_Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/MagicBloom_Dirt.png -------------------------------------------------------------------------------- /Textures/MatCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/MatCap.png -------------------------------------------------------------------------------- /Textures/NeoBloom_LensDirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/NeoBloom_LensDirt.png -------------------------------------------------------------------------------- /Textures/NormalMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/NormalMap.png -------------------------------------------------------------------------------- /Textures/Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/Overlay.png -------------------------------------------------------------------------------- /Textures/Pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/Pong.png -------------------------------------------------------------------------------- /Textures/Sketch_Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luluco250/FXShaders/HEAD/Textures/Sketch_Shadow.png --------------------------------------------------------------------------------