| 1165 | #endif |
| 1166 | |
| 1167 | void GSLocalMemoryFunctions::ReadTexture4HL(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1168 | { |
| 1169 | const u32* pal = mem.m_clut; |
| 1170 | |
| 1171 | foreachBlock(off.assertSizesMatch(GSLocalMemory::swizzle32), mem, r, dst, dstpitch, 32, [&](u8* read_dst, const u8* src) |
| 1172 | { |
| 1173 | GSBlock::ReadAndExpandBlock4HL_32(src, read_dst, dstpitch, pal); |
| 1174 | }); |
| 1175 | } |
| 1176 | |
| 1177 | void GSLocalMemoryFunctions::ReadTexture4HH(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1178 | { |
nothing calls this directly
no test coverage detected