| 1144 | |
| 1145 | #if _M_SSE == 0x501 |
| 1146 | void GSLocalMemoryFunctions::ReadTexture8HSW(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1147 | { |
| 1148 | const u32* pal = mem.m_clut; |
| 1149 | |
| 1150 | foreachBlock(off.assertSizesMatch(GSLocalMemory::swizzle8), mem, r, dst, dstpitch, 32, [&](u8* read_dst, const u8* src) |
| 1151 | { |
| 1152 | GSBlock::ReadAndExpandBlock8_32HSW(src, read_dst, dstpitch, pal); |
| 1153 | }); |
| 1154 | } |
| 1155 | |
| 1156 | void GSLocalMemoryFunctions::ReadTexture8HHSW(GSLocalMemory& mem, const GSOffset& off, const GSVector4i& r, u8* dst, int dstpitch, const GIFRegTEXA& TEXA) |
| 1157 | { |
nothing calls this directly
no test coverage detected