orca/src/orca.m

26 lines
649 B
Mathematica
Raw Normal View History

2023-09-07 12:51:48 +00:00
/*************************************************************************
2023-03-05 15:05:43 +00:00
*
2023-09-07 12:51:48 +00:00
* Orca
* Copyright 2023 Martin Fouilleul and the Orca project contributors
* See LICENSE.txt for licensing information
2023-03-05 15:05:43 +00:00
*
2023-09-07 12:51:48 +00:00
**************************************************************************/
2023-03-05 15:05:43 +00:00
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