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

Function ilLoadHdrF

DevIL/src-IL/src/il_hdr.cpp:172–183  ·  view source on GitHub ↗

Reads an already-opened .hdr file

Source from the content-addressed store, hash-verified

170
171//! Reads an already-opened .hdr file
172ILboolean ilLoadHdrF(ILHANDLE File)
173{
174 ILuint FirstPos;
175 ILboolean bRet;
176
177 iSetInputFile(File);
178 FirstPos = itell();
179 bRet = iLoadHdrInternal();
180 iseek(FirstPos, IL_SEEK_SET);
181
182 return bRet;
183}
184
185
186//! Reads from a memory "lump" that contains a .hdr

Callers 2

ilLoadHdrFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadHdrInternalFunction · 0.85

Tested by

no test coverage detected