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