Man page - sdl_getassertionreport(3)
Packages contains this manual
Manual
SDL_GetAssertionReport
NAMEHEADER FILE
SYNOPSIS
DESCRIPTION
RETURN VALUE
THREAD SAFETY
AVAILABILITY
SEE ALSO
NAME
SDL_GetAssertionReport - Get a list of all assertion failures.
HEADER FILE
Defined in SDL3/SDL_assert.h
SYNOPSIS
#include "SDL3/SDL.h"
const SDL_AssertData * SDL_GetAssertionReport(void);
DESCRIPTION
This function gets all assertions triggered since the last call to
SDL_ResetAssertionReport (), or the start of the program.
The proper way to examine this data looks something like this:
const
SDL_AssertData *item = SDL_GetAssertionReport();
while (item) {
printf("ā%sā, %s (%s:%d), triggered %u
times, always ignore: %s.\n",
item->condition, item->function, item->filename,
item->linenum, item->trigger_count,
item->always_ignore ? "yes" : "no");
item = item->next;
}
RETURN VALUE
(const
SDL_AssertData
*) Returns a list of all failed assertions or NULL if the
list is empty. This memory should not be modified or freed
by the application. This pointer remains valid until the
next call to
SDL_Quit
() or
SDL_ResetAssertionReport ().
THREAD SAFETY
This function is not thread safe. Other threads calling
SDL_ResetAssertionReport () simultaneously, may render the returned pointer invalid.
AVAILABILITY
This function is available since SDL 3.2.0.
SEE ALSO
⢠(3), SDL_ResetAssertionReport (3)