Wiki Page Content

Differences between revisions 10 and 11
Revision 10 as of 2013-07-29 05:29:59
Size: 2091
Editor: RyanGordon
Comment: Added a link to technobabble for SDL_assert
Revision 11 as of 2013-10-12 19:04:42
Size: 2109
Comment: Fixed search to exclude the right pages.
Deletions are marked like this. Additions are marked like this.
Line 31: Line 31:
<<FullSearchCached(category:CategoryEnum CategoryAssertions -SGEnumerations)>> <<FullSearchCached(category:CategoryEnum CategoryAssertions -title:SGEnumerations)>>
Line 34: Line 34:
<<FullSearchCached(category:CategoryStruct CategoryAssertions -SGStructures)>> <<FullSearchCached(category:CategoryStruct CategoryAssertions -title:SGStructures)>>
Line 37: Line 37:
<<FullSearchCached(category:CategoryAssertions -CategoryEnum -CategoryStruct -SGFunctions)>> <<FullSearchCached(category:CategoryAssertions -CategoryEnum -CategoryStruct -title:SGFunctions)>>

Assertions

Include File(s): SDL_assert.h

Introduction

This category contains functions for managing assertions.

A fairly detailed discussion of the features of SDL_assert vs the standard assert() macro, and some technical explanation about how this is implemented can be found in this Google+ post from Ryan.

SDL_ASSERT_LEVEL affects which assertions, if any, are processed during compiling based on which function was used to create the assertion (see functions below).

SDL_ASSERT_LEVEL can be defined in your project. If not otherwise set, SDL_ASSERT_LEVEL will default to level 2 for debug builds or level 1 for release builds.

The following table describes each SDL_ASSERT_LEVEL setting and the corresponding impact on the three SDL_assert functions:

SDL_ASSERT_LEVEL

Description

Function

Function Status

0

all assertions disabled

SDL_assert
SDL_assert_release
SDL_assert_paranoid

disabled
disabled
disabled

1

for release (default)

SDL_assert
SDL_assert_release
SDL_assert_paranoid

disabled
enabled
disabled

2

for debugging (default)

SDL_assert
SDL_assert_release
SDL_assert_paranoid

enabled
enabled
disabled

3

stringent for detailed checking

SDL_assert
SDL_assert_release
SDL_assert_paranoid

enabled
enabled
enabled

Enumerations

Structures

Functions


CategoryCategory

None: CategoryAssertions (last edited 2019-03-25 00:03:03 by ColaEuphoria)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit