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

Function ilLoadPcdF

DevIL/src-IL/src/il_pcd.cpp:42–53  ·  view source on GitHub ↗

Reads an already-opened .pcd file

Source from the content-addressed store, hash-verified

40
41//! Reads an already-opened .pcd file
42ILboolean ilLoadPcdF(ILHANDLE File)
43{
44 ILuint FirstPos;
45 ILboolean bRet;
46
47 iSetInputFile(File);
48 FirstPos = itell();
49 bRet = iLoadPcdInternal();
50 iseek(FirstPos, IL_SEEK_SET);
51
52 return bRet;
53}
54
55
56//! Reads from a memory "lump" that contains a .pcd file

Callers 2

ilLoadPcdFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadPcdInternalFunction · 0.85

Tested by

no test coverage detected