diff options
| author | Mai M <mathew1800@gmail.com> | 2021-07-18 13:58:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-18 13:58:16 -0400 |
| commit | 6e7698a3540eb3e9186bea442f08d5d96544d73f (patch) | |
| tree | 8acac2ecb7a6ab5dd0a3260236327f075808f455 /Source/Core/VideoCommon/PostProcessing.cpp | |
| parent | 47d847d4686dc347d10fb005e2c55a5bf87ab3af (diff) | |
| parent | eb4ed72a96b9a7956976e8e0893b820aca7b0dc0 (diff) | |
Merge pull request #9910 from Tilka/postprocess
PostProcessing: fix shader compilation failures
Diffstat (limited to 'Source/Core/VideoCommon/PostProcessing.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PostProcessing.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/PostProcessing.cpp b/Source/Core/VideoCommon/PostProcessing.cpp index 6cf1397416..8d0b758c6f 100644 --- a/Source/Core/VideoCommon/PostProcessing.cpp +++ b/Source/Core/VideoCommon/PostProcessing.cpp @@ -400,6 +400,8 @@ void PostProcessing::RecompileShader() m_pixel_shader.reset(); if (!CompilePixelShader()) return; + if (!CompileVertexShader()) + return; CompilePipeline(); } |
