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

Function ilLoadFtxF

DevIL/src-IL/src/il_ftx.cpp:39–50  ·  view source on GitHub ↗

Reads an already-opened FTX file

Source from the content-addressed store, hash-verified

37
38//! Reads an already-opened FTX file
39ILboolean ilLoadFtxF(ILHANDLE File)
40{
41 ILuint FirstPos;
42 ILboolean bRet;
43
44 iSetInputFile(File);
45 FirstPos = itell();
46 bRet = iLoadFtxInternal();
47 iseek(FirstPos, IL_SEEK_SET);
48
49 return bRet;
50}
51
52
53//! Reads from a memory "lump" that contains a FTX

Callers 2

ilLoadFtxFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadFtxInternalFunction · 0.85

Tested by

no test coverage detected