MCPcopy Create free account
hub / github.com/DentonW/DevIL / ilLoadExrF

Function ilLoadExrF

DevIL/src-IL/src/il_exr.cpp:193–204  ·  view source on GitHub ↗

Reads an already-opened .exr file

Source from the content-addressed store, hash-verified

191
192//! Reads an already-opened .exr file
193ILboolean 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

Callers 1

ilLoadExrFunction · 0.70

Calls 2

iSetInputFileFunction · 0.85
iLoadExrInternalFunction · 0.70

Tested by

no test coverage detected