| 1182 | } |
| 1183 | |
| 1184 | static void *alloc(size_t sz) |
| 1185 | { |
| 1186 | void *ret = NULL; |
| 1187 | #ifdef RENDERDOC_EXPORTS |
| 1188 | ret = malloc(sz); |
| 1189 | if(ret == NULL) |
| 1190 | RENDERDOC_OutOfMemory(sz); |
| 1191 | #else |
| 1192 | ret = RENDERDOC_AllocArrayMem(sz); |
| 1193 | #endif |
| 1194 | return ret; |
| 1195 | } |
| 1196 | static void dealloc(void *p) |
| 1197 | { |
| 1198 | #ifdef RENDERDOC_EXPORTS |