summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/program_header.h
diff options
context:
space:
mode:
authorGravatar Liam2022-03-18 09:26:25 -0400
committerGravatar Liam2022-03-18 09:26:25 -0400
commitd400b618a76ab0b08adfcb808ca8a8e336e1d573 (patch)
tree495f1f53bd24b2190d0a5c23d9ecafd4f2d38985 /src/shader_recompiler/program_header.h
parentshader_recompiler/EXIT: increment output register on failed enable test (diff)
downloadyuzu-d400b618a76ab0b08adfcb808ca8a8e336e1d573.tar.gz
yuzu-d400b618a76ab0b08adfcb808ca8a8e336e1d573.tar.xz
yuzu-d400b618a76ab0b08adfcb808ca8a8e336e1d573.zip
shader_recompiler/EXIT: skip render targets with no outputs
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/program_header.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shader_recompiler/program_header.h b/src/shader_recompiler/program_header.h
index bd6c2bfb5..5e42ab5a3 100644
--- a/src/shader_recompiler/program_header.h
+++ b/src/shader_recompiler/program_header.h
@@ -196,6 +196,11 @@ struct ProgramHeader {
196 return {(bits & 1) != 0, (bits & 2) != 0, (bits & 4) != 0, (bits & 8) != 0}; 196 return {(bits & 1) != 0, (bits & 2) != 0, (bits & 4) != 0, (bits & 8) != 0};
197 } 197 }
198 198
199 [[nodiscard]] bool HasOutputComponents(u32 rt) const noexcept {
200 const u32 bits{omap.target >> (rt * 4)};
201 return bits & (1 | 2 | 4 | 8);
202 }
203
199 [[nodiscard]] std::array<PixelImap, 4> GenericInputMap(u32 attribute) const { 204 [[nodiscard]] std::array<PixelImap, 4> GenericInputMap(u32 attribute) const {
200 const auto& vector{imap_generic_vector[attribute]}; 205 const auto& vector{imap_generic_vector[attribute]};
201 return {vector.x, vector.y, vector.z, vector.w}; 206 return {vector.x, vector.y, vector.z, vector.w};