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

Method Check

DevIL/include/IL/devil_cpp_wrapper.hpp:915–924  ·  view source on GitHub ↗

ILERROR

Source from the content-addressed store, hash-verified

913// ILERROR
914//
915void ilError::Check(void (*Callback)(const char*))
916{
917 static ILenum Error;
918
919 while ((Error = ilGetError()) != IL_NO_ERROR) {
920 Callback(iluErrorString(Error));
921 }
922
923 return;
924}
925
926void ilError::Check(void (*Callback)(ILenum))
927{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected