mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 01:47:57 -05:00
shader_recompiler/EXIT: skip render targets with no outputs
This commit is contained in:
@ -196,6 +196,11 @@ struct ProgramHeader {
|
||||
return {(bits & 1) != 0, (bits & 2) != 0, (bits & 4) != 0, (bits & 8) != 0};
|
||||
}
|
||||
|
||||
[[nodiscard]] bool HasOutputComponents(u32 rt) const noexcept {
|
||||
const u32 bits{omap.target >> (rt * 4)};
|
||||
return bits & (1 | 2 | 4 | 8);
|
||||
}
|
||||
|
||||
[[nodiscard]] std::array<PixelImap, 4> GenericInputMap(u32 attribute) const {
|
||||
const auto& vector{imap_generic_vector[attribute]};
|
||||
return {vector.x, vector.y, vector.z, vector.w};
|
||||
|
Reference in New Issue
Block a user