| 1123 | } |
| 1124 | |
| 1125 | void GSLocalMemoryFunctions::ReadTexture4(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1126 | { |
| 1127 | const u32* pal = mem.m_clut; |
| 1128 | |
| 1129 | foreachBlock(off.assertSizesMatch(GSLocalMemory::swizzle4), mem, r, dst, dstpitch, 32, [&](u8* read_dst, const u8* src) |
| 1130 | { |
| 1131 | GSBlock::ReadAndExpandBlock4_32(src, read_dst, dstpitch, pal); |
| 1132 | }); |
| 1133 | } |
| 1134 | |
| 1135 | void GSLocalMemoryFunctions::ReadTexture8H(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1136 | { |
nothing calls this directly
no test coverage detected