orca/src/orca.m

27 lines
591 B
Mathematica
Raw Normal View History

2023-08-19 12:49:23 +00:00
/************************************************************/ /**
2023-03-05 15:05:43 +00:00
*
* @file: milepost.m
* @author: Martin Fouilleul
* @date: 13/02/2021
* @revision:
*
*****************************************************************/
2023-08-19 12:49:23 +00:00
#include "app/osx_app.m"
#include "graphics/graphics_common.c"
#include "graphics/graphics_surface.c"
#include "platform/osx_path.m"
2023-03-05 15:05:43 +00:00
#if OC_COMPILE_METAL
2023-08-19 12:49:23 +00:00
#include "graphics/mtl_surface.m"
#endif
#if OC_COMPILE_CANVAS
2023-08-19 12:49:23 +00:00
#include "graphics/mtl_renderer.m"
2023-03-05 15:05:43 +00:00
#endif
#if OC_COMPILE_GLES
2023-08-19 12:49:23 +00:00
#include "graphics/gl_loader.c"
#include "graphics/egl_surface.c"
2023-03-05 15:05:43 +00:00
#endif