mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12:00
rsx: Aesthetic changes
This commit is contained in:
parent
9a9b5860df
commit
ca7de4bcb1
2 changed files with 20 additions and 9 deletions
|
@ -872,10 +872,10 @@ namespace rsx
|
|||
|
||||
static inline const std::array<bool, 4> get_write_output_mask(rsx::surface_color_format format)
|
||||
{
|
||||
const std::array<bool, 4> rgba = { true, true, true, true };
|
||||
const std::array<bool, 4> rgb = { true, true, true, false };
|
||||
const std::array<bool, 4> rg = { true, true, false, false };
|
||||
const std::array<bool, 4> r = { true, false, false, false };
|
||||
constexpr std::array<bool, 4> rgba = { true, true, true, true };
|
||||
constexpr std::array<bool, 4> rgb = { true, true, true, false };
|
||||
constexpr std::array<bool, 4> rg = { true, true, false, false };
|
||||
constexpr std::array<bool, 4> r = { true, false, false, false };
|
||||
|
||||
switch (format)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue