|
Size: 697
Comment: update content - w/ Sam; remove draft
|
← Revision 4 as of 2013-07-29 05:20:08 ⇥
Size: 762
Comment: SDL_assert updates
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 5: | Line 5: |
| Use this function to create an assertion for debugging. | Use this macro to create an assertion for debugging. |
| Line 19: | Line 19: |
| You can add your code example here | SDL_assert(1 == 0); // triggers an assertion. SDL_assert(1 == 1); // does NOT trigger an assertion. |
SDL_assert
Use this macro to create an assertion for debugging.
Syntax
void SDL_assert(condition)
Function Parameters
condition |
the expression to check |
Code Examples
SDL_assert(1 == 0); // triggers an assertion.
SDL_assert(1 == 1); // does NOT trigger an assertion.
Remarks
This function is enabled only when the SDL_ASSERT_LEVEL is set to 2 or 3, otherwise it is disabled. See the Assertions Category page for details.
