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

Function ilLoadDdsF

DevIL/src-IL/src/il_dds.cpp:190–201  ·  view source on GitHub ↗

Reads an already-opened .dds file

Source from the content-addressed store, hash-verified

188
189//! Reads an already-opened .dds file
190ILboolean ilLoadDdsF(ILHANDLE File)
191{
192 ILuint FirstPos;
193 ILboolean bRet;
194
195 iSetInputFile(File);
196 FirstPos = itell();
197 bRet = iLoadDdsInternal();
198 iseek(FirstPos, IL_SEEK_SET);
199
200 return bRet;
201}
202
203
204//! Reads from a memory "lump" that contains a .dds

Callers 3

ilLoadTextureFFunction · 0.85
ilLoadDdsFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadDdsInternalFunction · 0.85

Tested by

no test coverage detected