diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-25 17:10:45 +0200 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-09 14:14:38 +0200 |
commit | 926b80102f1c00675a9f3956258a066bfe0c3642 (patch) | |
tree | 616288030c9e72f8cf6a3ee12ae89faa07b9da79 /src/video_core/shader/control_flow.h | |
parent | shader_ir: propagate shader size to the IR (diff) | |
download | yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar.gz yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar.bz2 yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar.lz yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar.xz yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.tar.zst yuzu-926b80102f1c00675a9f3956258a066bfe0c3642.zip |
Diffstat (limited to 'src/video_core/shader/control_flow.h')
-rw-r--r-- | src/video_core/shader/control_flow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/control_flow.h b/src/video_core/shader/control_flow.h index 16736d57a..f5d37a231 100644 --- a/src/video_core/shader/control_flow.h +++ b/src/video_core/shader/control_flow.h @@ -29,6 +29,7 @@ struct ShaderBlock { ShaderBlock(const ShaderBlock& sb) = default; u32 start{}; u32 end{}; + bool ignore_branch{}; struct Branch { Condition cond{}; bool kills{}; |