MCPcopy Create free account
hub / github.com/DentonW/DevIL / ILAPIENTRY ilGetBooleanv

Function ILAPIENTRY ilGetBooleanv

DevIL/src-IL/src/il_states.cpp:321–331  ·  view source on GitHub ↗

Sets Param equal to the current value of the Mode

Source from the content-addressed store, hash-verified

319
320//! Sets Param equal to the current value of the Mode
321void ILAPIENTRY ilGetBooleanv(ILenum Mode, ILboolean *Param)
322{
323 if (Param == NULL) {
324 ilSetError(IL_INVALID_PARAM);
325 return;
326 }
327
328 *Param = ilGetInteger(Mode);
329
330 return;
331}
332
333
334//! Returns the current value of the Mode

Callers

nothing calls this directly

Calls 1

ilSetErrorFunction · 0.85

Tested by

no test coverage detected