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

Function ilLoadPsdF

DevIL/src-IL/src/il_psd.cpp:162–173  ·  view source on GitHub ↗

Reads an already-opened Psd file

Source from the content-addressed store, hash-verified

160
161//! Reads an already-opened Psd file
162ILboolean ilLoadPsdF(ILHANDLE File)
163{
164 ILuint FirstPos;
165 ILboolean bRet;
166
167 iSetInputFile(File);
168 FirstPos = itell();
169 bRet = iLoadPsdInternal();
170 iseek(FirstPos, IL_SEEK_SET);
171
172 return bRet;
173}
174
175
176//! Reads from a memory "lump" that contains a Psd

Callers 2

ilLoadPsdFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadPsdInternalFunction · 0.85

Tested by

no test coverage detected