| 1275 | // 32/8 |
| 1276 | |
| 1277 | void GSLocalMemoryFunctions::ReadTexture8P(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1278 | { |
| 1279 | foreachBlock(off.assertSizesMatch(GSLocalMemory::swizzle8), mem, r, dst, dstpitch, 8, [&](u8* read_dst, const u8* src) |
| 1280 | { |
| 1281 | GSBlock::ReadBlock8(src, read_dst, dstpitch); |
| 1282 | }); |
| 1283 | } |
| 1284 | |
| 1285 | void GSLocalMemoryFunctions::ReadTexture4P(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1286 | { |
nothing calls this directly
no test coverage detected