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

Function ilLoadRawF

DevIL/src-IL/src/il_raw.cpp:48–59  ·  view source on GitHub ↗

Reads an already-opened raw file

Source from the content-addressed store, hash-verified

46
47//! Reads an already-opened raw file
48ILboolean ilLoadRawF(ILHANDLE File)
49{
50 ILuint FirstPos;
51 ILboolean bRet;
52
53 iSetInputFile(File);
54 FirstPos = itell();
55 bRet = iLoadRawInternal();
56 iseek(FirstPos, IL_SEEK_SET);
57
58 return bRet;
59}
60
61
62//! Reads from a raw memory "lump"

Callers 2

ilLoadRawFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadRawInternalFunction · 0.85

Tested by

no test coverage detected