Address review comments
This commit is contained in:
parent
d400b618a7
commit
536d7ed7b1
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ struct ProgramHeader {
|
||||||
|
|
||||||
[[nodiscard]] bool HasOutputComponents(u32 rt) const noexcept {
|
[[nodiscard]] bool HasOutputComponents(u32 rt) const noexcept {
|
||||||
const u32 bits{omap.target >> (rt * 4)};
|
const u32 bits{omap.target >> (rt * 4)};
|
||||||
return bits & (1 | 2 | 4 | 8);
|
return (bits & 0xf) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] std::array<PixelImap, 4> GenericInputMap(u32 attribute) const {
|
[[nodiscard]] std::array<PixelImap, 4> GenericInputMap(u32 attribute) const {
|
||||||
|
|
Loading…
Reference in a new issue