| 380 | } |
| 381 | |
| 382 | static void NullFlip(HContext _context) |
| 383 | { |
| 384 | NullContext* context = (NullContext*) _context; |
| 385 | PostDeleteTextures(context, false); |
| 386 | |
| 387 | // Mimick glfw |
| 388 | if (context->m_RequestWindowClose) |
| 389 | { |
| 390 | if (dmPlatform::TriggerCloseCallback(context->m_BaseContext.m_Window)) |
| 391 | { |
| 392 | CloseWindow((HContext) context); |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | g_Flipped = 1; |
| 397 | } |
| 398 | |
| 399 | #define NATIVE_HANDLE_IMPL(return_type, func_name) return_type GetNative##func_name() { return NULL; } |
| 400 |
nothing calls this directly
no test coverage detected