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

Function ilLoadVtfF

DevIL/src-IL/src/il_vtf.cpp:195–206  ·  view source on GitHub ↗

Reads an already-opened VTF file

Source from the content-addressed store, hash-verified

193
194//! Reads an already-opened VTF file
195ILboolean ilLoadVtfF(ILHANDLE File)
196{
197 ILuint FirstPos;
198 ILboolean bRet;
199
200 iSetInputFile(File);
201 FirstPos = itell();
202 bRet = iLoadVtfInternal();
203 iseek(FirstPos, IL_SEEK_SET);
204
205 return bRet;
206}
207
208
209//! Reads from a memory "lump" that contains a VTF

Callers 2

ilLoadVtfFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadVtfInternalFunction · 0.85

Tested by

no test coverage detected