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

Function ilLoadDoomF

DevIL/src-IL/src/il_doom.cpp:54–65  ·  view source on GitHub ↗

Reads an already-opened Doom file

Source from the content-addressed store, hash-verified

52
53//! Reads an already-opened Doom file
54ILboolean ilLoadDoomF(ILHANDLE File)
55{
56 ILuint FirstPos;
57 ILboolean bRet;
58
59 iSetInputFile(File);
60 FirstPos = itell();
61 bRet = iLoadDoomInternal();
62 iseek(FirstPos, IL_SEEK_SET);
63
64 return bRet;
65}
66
67
68//! Reads from a memory "lump" that contains a Doom texture

Callers 4

ilLoadDoomFunction · 0.85
ilLoadDoomFlatFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85
DoomTestFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadDoomInternalFunction · 0.85

Tested by 1

DoomTestFunction · 0.68