mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Merge pull request #9910 from Tilka/postprocess
PostProcessing: fix shader compilation failures
This commit is contained in:
commit
6e7698a354
2 changed files with 3 additions and 1 deletions
|
@ -53,7 +53,7 @@ void main()
|
|||
float offsetAdd;
|
||||
|
||||
// layer0 = left eye, layer1 = right eye
|
||||
if (layer == 1)
|
||||
if (src_layer == 1)
|
||||
{
|
||||
offsetAdd = stereoOffset;
|
||||
}
|
||||
|
|
|
@ -400,6 +400,8 @@ void PostProcessing::RecompileShader()
|
|||
m_pixel_shader.reset();
|
||||
if (!CompilePixelShader())
|
||||
return;
|
||||
if (!CompileVertexShader())
|
||||
return;
|
||||
|
||||
CompilePipeline();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue