summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-26 02:56:04 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-09 14:14:40 +0200
commitcfb3db1a32975583b94a0df5f3ff0020254208c0 (patch)
treea0d3b6ed65f6d02d09c376b5033c97d691762d45 /src/video_core/shader/decode.cpp
parentshader_ir: Remove unnecessary constructors and use optional for ScanFlow result (diff)
downloadyuzu-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.cpp2
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;