2023-03-05 15:05:43 +00:00
|
|
|
/************************************************************//**
|
|
|
|
*
|
|
|
|
* @file: milepost.m
|
|
|
|
* @author: Martin Fouilleul
|
|
|
|
* @date: 13/02/2021
|
|
|
|
* @revision:
|
|
|
|
*
|
|
|
|
*****************************************************************/
|
|
|
|
|
2023-08-09 11:06:32 +00:00
|
|
|
#include"platform/osx_path.m"
|
|
|
|
#include"app/osx_app.m"
|
|
|
|
#include"graphics/graphics_common.c"
|
|
|
|
#include"graphics/graphics_surface.c"
|
2023-03-05 15:05:43 +00:00
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
#if OC_COMPILE_METAL
|
2023-08-09 11:06:32 +00:00
|
|
|
#include"graphics/mtl_surface.m"
|
2023-04-25 17:13:15 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
#if OC_COMPILE_CANVAS
|
2023-08-09 11:06:32 +00:00
|
|
|
#include"graphics/mtl_renderer.m"
|
2023-03-05 15:05:43 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
#if OC_COMPILE_GLES
|
2023-08-09 11:06:32 +00:00
|
|
|
#include"graphics/gl_loader.c"
|
|
|
|
#include"graphics/egl_surface.c"
|
2023-03-05 15:05:43 +00:00
|
|
|
#endif
|