| 2440 | // TODO: Make graphics.cpp backend agnostic |
| 2441 | #if defined(DM_PLATFORM_IOS) |
| 2442 | void AppBootstrap(int argc, char** argv, void* init_ctx, EngineInit init_fn, EngineExit exit_fn, EngineCreate create_fn, EngineDestroy destroy_fn, EngineUpdate update_fn, EngineGetResult result_fn) |
| 2443 | { |
| 2444 | #if !defined(DM_GRAPHICS_NULL) |
| 2445 | glfwAppBootstrap(argc, argv, init_ctx, init_fn, exit_fn, create_fn, destroy_fn, update_fn, result_fn); |
| 2446 | #endif |
| 2447 | } |
| 2448 | #endif |
| 2449 | |
| 2450 | /////////////////////////////////////////////////// |