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

Function ilLoadCutF

DevIL/src-IL/src/il_cut.cpp:56–67  ·  view source on GitHub ↗

Reads an already-opened .cut file

Source from the content-addressed store, hash-verified

54
55//! Reads an already-opened .cut file
56ILboolean ilLoadCutF(ILHANDLE File)
57{
58 ILuint FirstPos;
59 ILboolean bRet;
60
61 iSetInputFile(File);
62 FirstPos = itell();
63 bRet = iLoadCutInternal();
64 iseek(FirstPos, IL_SEEK_SET);
65
66 return bRet;
67}
68
69
70//! Reads from a memory "lump" that contains a .cut

Callers 2

ilLoadCutFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadCutInternalFunction · 0.85

Tested by

no test coverage detected