| 510 | |
| 511 | template< u32 F > |
| 512 | static void ConvertCI8_Row( NativePfCI8 * dst, const u8 * src, u32 src_offset, u32 width ) |
| 513 | { |
| 514 | for (u32 x {}; x < width; x++) |
| 515 | { |
| 516 | dst[ x ].Bits = src[src_offset ^ F]; |
| 517 | src_offset++; |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | template< u32 F > |
| 522 | static void ConvertCI8_Row_To_8888( NativePf8888 * dst, const u8 * src, u32 src_offset, u32 width, const NativePf8888 * palette ) |
nothing calls this directly
no outgoing calls
no test coverage detected