diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-26 20:40:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 20:40:13 +0200 |
commit | 508242c2671713239c66461125696db1a69bd163 (patch) | |
tree | 07d495dd12545f1860a83f099c288b9637e76e67 /src/video_core/renderer_opengl | |
parent | Merge pull request #3980 from ReinUsesLisp/red-op (diff) | |
parent | shader/other: Implement BAR.SYNC 0x0 (diff) | |
download | yuzu-508242c2671713239c66461125696db1a69bd163.tar yuzu-508242c2671713239c66461125696db1a69bd163.tar.gz yuzu-508242c2671713239c66461125696db1a69bd163.tar.bz2 yuzu-508242c2671713239c66461125696db1a69bd163.tar.lz yuzu-508242c2671713239c66461125696db1a69bd163.tar.xz yuzu-508242c2671713239c66461125696db1a69bd163.tar.zst yuzu-508242c2671713239c66461125696db1a69bd163.zip |
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 84ca830f4..253484968 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -2335,6 +2335,15 @@ private: return {fmt::format("readInvocationARB({}, {})", value, index), Type::Float}; } + Expression Barrier(Operation) { + if (!ir.IsDecompiled()) { + LOG_ERROR(Render_OpenGL, "barrier() used but shader is not decompiled"); + return {}; + } + code.AddLine("barrier();"); + return {}; + } + Expression MemoryBarrierGL(Operation) { code.AddLine("memoryBarrier();"); return {}; @@ -2581,6 +2590,7 @@ private: &GLSLDecompiler::ThreadMask<Func::Lt>, &GLSLDecompiler::ShuffleIndexed, + &GLSLDecompiler::Barrier, &GLSLDecompiler::MemoryBarrierGL, }; static_assert(operation_decompilers.size() == static_cast<std::size_t>(OperationCode::Amount)); |