- fix missing forward declaration when falling back to older user shaders

This commit is contained in:
Magnus Norddahl 2018-07-19 02:34:45 +02:00
parent a0a7fd53e8
commit 7da61ddfee
1 changed files with 1 additions and 0 deletions

View File

@ -247,6 +247,7 @@ bool FShader::Load(const char * name, const char * vert_prog_lump, const char *
if (pp_data.GetString().IndexOf("ProcessLight") >= 0)
{
// The ProcessLight signatured changed. Forward to the old one.
fp_comb << "\nvec4 ProcessLight(vec4 color);\n";
fp_comb << "\nvec4 ProcessLight(Material material, vec4 color) { return ProcessLight(color); }\n";
}
}