|
SDL
2.0
|
#include "dynapi/SDL_dynapi.h"#include "dynapi/SDL_dynapi_overrides.h"#include "SDL_config.h"#include "SDL_assert.h"#include "SDL_log.h"
Include dependency graph for SDL_internal.h:Go to the source code of this file.
Macros | |
| #define | _GNU_SOURCE |
| #define | SDL_VARIABLE_LENGTH_ARRAY |
| #define | SDL_MAX_SMALL_ALLOC_STACKSIZE 128 |
| #define | SDL_small_alloc(type, count, pisstack) ( (*(pisstack) = ((sizeof(type)*(count)) < SDL_MAX_SMALL_ALLOC_STACKSIZE)), (*(pisstack) ? SDL_stack_alloc(type, count) : (type*)SDL_malloc(sizeof(type)*(count))) ) |
| #define | SDL_small_free(ptr, isstack) if ((isstack)) { SDL_stack_free(ptr); } else { SDL_free(ptr); } |
| #define | DECLSPEC |
| #define | SDLCALL |
| #define | SDL_LEAN_AND_MEAN 0 |
| #define | SDL_HAVE_BLIT_0 !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_BLIT_1 !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_BLIT_A !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_BLIT_N !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_BLIT_N_RGB565 !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_BLIT_AUTO !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_RLE !SDL_LEAN_AND_MEAN |
| #define | SDL_VIDEO_RENDER_SW !SDL_LEAN_AND_MEAN |
| #define | SDL_HAVE_YUV !SDL_LEAN_AND_MEAN |
| #define _GNU_SOURCE |
Definition at line 26 of file SDL_internal.h.
| #define DECLSPEC |
Definition at line 48 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_0 !SDL_LEAN_AND_MEAN |
Definition at line 64 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_1 !SDL_LEAN_AND_MEAN |
Definition at line 70 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_A !SDL_LEAN_AND_MEAN |
Definition at line 76 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_AUTO !SDL_LEAN_AND_MEAN |
Definition at line 95 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_N !SDL_LEAN_AND_MEAN |
Definition at line 82 of file SDL_internal.h.
| #define SDL_HAVE_BLIT_N_RGB565 !SDL_LEAN_AND_MEAN |
Definition at line 88 of file SDL_internal.h.
| #define SDL_HAVE_RLE !SDL_LEAN_AND_MEAN |
Definition at line 101 of file SDL_internal.h.
| #define SDL_HAVE_YUV !SDL_LEAN_AND_MEAN |
Definition at line 116 of file SDL_internal.h.
| #define SDL_LEAN_AND_MEAN 0 |
Definition at line 58 of file SDL_internal.h.
| #define SDL_MAX_SMALL_ALLOC_STACKSIZE 128 |
Definition at line 38 of file SDL_internal.h.
| #define SDL_small_alloc | ( | type, | |
| count, | |||
| pisstack | |||
| ) | ( (*(pisstack) = ((sizeof(type)*(count)) < SDL_MAX_SMALL_ALLOC_STACKSIZE)), (*(pisstack) ? SDL_stack_alloc(type, count) : (type*)SDL_malloc(sizeof(type)*(count))) ) |
Definition at line 39 of file SDL_internal.h.
| #define SDL_small_free | ( | ptr, | |
| isstack | |||
| ) | if ((isstack)) { SDL_stack_free(ptr); } else { SDL_free(ptr); } |
Definition at line 40 of file SDL_internal.h.
| #define SDL_VARIABLE_LENGTH_ARRAY |
Definition at line 35 of file SDL_internal.h.
| #define SDL_VIDEO_RENDER_SW !SDL_LEAN_AND_MEAN |
Definition at line 109 of file SDL_internal.h.
| #define SDLCALL |
Definition at line 49 of file SDL_internal.h.