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

Method Check

DevIL/cpp wrapper/il_wrap.cpp:846–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

844//
845
846ILvoid ilError::Check(ILvoid (*Callback)(const char*))
847{
848 static ILenum Error;
849
850 while ((Error = ilGetError()) != IL_NO_ERROR) {
851 Callback(iluErrorString(Error));
852 }
853
854 return;
855}
856
857
858ILvoid ilError::Check(ILvoid (*Callback)(ILenum))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected