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

Function ilLoadPicF

DevIL/src-IL/src/il_pic.cpp:134–145  ·  view source on GitHub ↗

Reads an already-opened .pic file

Source from the content-addressed store, hash-verified

132
133//! Reads an already-opened .pic file
134ILboolean ilLoadPicF(ILHANDLE File)
135{
136 ILuint FirstPos;
137 ILboolean bRet;
138
139 iSetInputFile(File);
140 FirstPos = itell();
141 bRet = iLoadPicInternal();
142 iseek(FirstPos, IL_SEEK_SET);
143
144 return bRet;
145}
146
147
148//! Reads from a memory "lump" that contains a .pic

Callers 2

ilLoadPicFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadPicInternalFunction · 0.85

Tested by

no test coverage detected