| 2211 | } |
| 2212 | |
| 2213 | void iFlipDxt1(ILubyte* data, ILuint count) |
| 2214 | { |
| 2215 | ILuint i; |
| 2216 | |
| 2217 | for (i = 0; i < count; ++i) { |
| 2218 | iFlipColorBlock(data); |
| 2219 | data += 8; //advance to next block |
| 2220 | } |
| 2221 | } |
| 2222 | |
| 2223 | void iFlipDxt3(ILubyte* data, ILuint count) |
| 2224 | { |
nothing calls this directly
no test coverage detected