Reads an already-opened .dds file
| 188 | |
| 189 | //! Reads an already-opened .dds file |
| 190 | ILboolean ilLoadDdsF(ILHANDLE File) |
| 191 | { |
| 192 | ILuint FirstPos; |
| 193 | ILboolean bRet; |
| 194 | |
| 195 | iSetInputFile(File); |
| 196 | FirstPos = itell(); |
| 197 | bRet = iLoadDdsInternal(); |
| 198 | iseek(FirstPos, IL_SEEK_SET); |
| 199 | |
| 200 | return bRet; |
| 201 | } |
| 202 | |
| 203 | |
| 204 | //! Reads from a memory "lump" that contains a .dds |
no test coverage detected