mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 22:05:38 +00:00
PostProcessing/FX: Fix GLSL compile error with discard
This commit is contained in:
parent
9cdff4781f
commit
101ebe3ac3
|
@ -1170,7 +1170,8 @@ bool PostProcessing::ReShadeFXShader::CompilePipeline(GPUTexture::Format format,
|
|||
if (needs_main_defn)
|
||||
{
|
||||
// dFdx/dFdy are not defined in the vertex shader.
|
||||
const char* defns = (stage == GPUShaderStage::Vertex) ? "#define dFdx(x) x\n#define dFdy(x) x\n" : "";
|
||||
const char* defns =
|
||||
(stage == GPUShaderStage::Vertex) ? "#define dFdx(x) x\n#define dFdy(x) x\n#define discard\n" : "";
|
||||
const char* precision = (api == RenderAPI::OpenGLES) ?
|
||||
"precision highp float;\nprecision highp int;\nprecision highp sampler2D;\n" :
|
||||
"";
|
||||
|
|
Loading…
Reference in a new issue