| 1049 | /////////////////// |
| 1050 | |
| 1051 | void GSLocalMemoryFunctions::ReadTexture32(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1052 | { |
| 1053 | foreachBlock(off.assertSizesMatch(GSLocalMemory::swizzle32), mem, r, dst, dstpitch, 32, [&](u8* read_dst, const u8* src) |
| 1054 | { |
| 1055 | GSBlock::ReadBlock32(src, read_dst, dstpitch); |
| 1056 | }); |
| 1057 | } |
| 1058 | |
| 1059 | void GSLocalMemoryFunctions::ReadTexture24(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1060 | { |
nothing calls this directly
no test coverage detected