| 152 | struct PixelBase |
| 153 | { |
| 154 | static PixelFormat::Enum getFormat() |
| 155 | { |
| 156 | if constexpr (LAMode) |
| 157 | return PixelFormat::L8A8; |
| 158 | else |
| 159 | return PixelFormat::R8G8B8A8; |
| 160 | } |
| 161 | |
| 162 | static size_t getNumBytes() |
| 163 | { |
no outgoing calls
no test coverage detected