diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-26 02:56:04 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-09 14:14:40 +0200 |
commit | cfb3db1a32975583b94a0df5f3ff0020254208c0 (patch) | |
tree | a0d3b6ed65f6d02d09c376b5033c97d691762d45 /src/video_core/shader/decode.cpp | |
parent | shader_ir: Remove unnecessary constructors and use optional for ScanFlow result (diff) | |
download | yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar.gz yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar.bz2 yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar.lz yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar.xz yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.tar.zst yuzu-cfb3db1a32975583b94a0df5f3ff0020254208c0.zip |
Diffstat (limited to 'src/video_core/shader/decode.cpp')
-rw-r--r-- | src/video_core/shader/decode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode.cpp b/src/video_core/shader/decode.cpp index 15cb33bbf..b0bd6630f 100644 --- a/src/video_core/shader/decode.cpp +++ b/src/video_core/shader/decode.cpp @@ -39,7 +39,7 @@ void ShaderIR::Decode() { std::memcpy(&header, program_code.data(), sizeof(Tegra::Shader::Header)); disable_flow_stack = false; - const auto info = ScanFlow(program_code, program_code.size(), main_offset); + const auto info = ScanFlow(program_code, program_size, main_offset); if (info) { const auto& shader_info = *info; coverage_begin = shader_info.start; |