| 2221 | } |
| 2222 | |
| 2223 | void iFlipDxt3(ILubyte* data, ILuint count) |
| 2224 | { |
| 2225 | ILuint i; |
| 2226 | for (i = 0; i < count; ++i) { |
| 2227 | iFlipSimpleAlphaBlock((ILushort*)data); |
| 2228 | iFlipColorBlock(data + 8); |
| 2229 | data += 16; //advance to next block |
| 2230 | } |
| 2231 | } |
| 2232 | |
| 2233 | void iFlipDxt5(ILubyte* data, ILuint count) |
| 2234 | { |
nothing calls this directly
no test coverage detected