I’m having an issue on Arch. After upgrading to RA 1.12, I’m crashing during shader compilation using Duimon’s presets.
The issue seems to be a missing .slang file due to a shader path change?
Error:
[ERROR] [slang]: Failed to open shader file: “/usr/share/libretro/shaders_slang/bl
urs/shaders/royale/blur9x9.slang”.
MBZ_3_STD_GDV.slang references that blur here:
// Reduce resolution ----------------------------------------------------------------
// Reduced to a very small amount so we can create a blur which will create a glow from the screen
// Mipmap option allows smoother downscaling
shader24 = …/…/…/…/blurs/shaders/royale/blur9x9.slang
mipmap_input24 = true
filter_linear24 = true
scale_type24 = absolute
scale_x24 = 128
scale_y24 = 128
alias24 = “BR_MirrorReflectionDiffusedPass”
// Add Diffused glow all around the screen ----------------------------------------------------------------
// Blurred so much that it’s non directional
// Mipmap option allows downscaling without artifacts
shader25 = …/…/…/…/blurs/shaders/royale/blur9x9.slang
mipmap_input25 = true
filter_linear25 = true
scale_type25 = absolute
scale_x25 = 12
scale_y25 = 12
alias25 = “BR_MirrorFullscreenGlowPass”
The actual path is: …/…/…/…/blurs/blur9x9.slang
After I make the path change in MBZ_3_STD_GDV.slang the preset works!
@HyperspaceMadness I wasn’t sure if you wanted this type of thing reported on your github, so I started here…