2024-01-04 22:59:17 +01:00
|
|
|
|
2024-01-05 00:48:33 +01:00
|
|
|
|
2024-01-05 22:30:43 +01:00
|
|
|
{{FILEINLINE:tools/merger/sfw_readme.inl.h}}
|
2024-01-21 17:19:54 +01:00
|
|
|
|
|
|
|
// MODULES:
|
|
|
|
// CORE + OBJECT + RENDER CORE + RENDER IMMEDIATE + RENDER OBJECTS
|
|
|
|
|
|
|
|
// LICENSES:
|
|
|
|
|
2024-01-13 22:26:34 +01:00
|
|
|
{{FILEINLINE:tools/merger/sfw_linceses_core.inl.h}}
|
|
|
|
{{FILEINLINE:tools/merger/sfw_linceses_render_core.inl.h}}
|
2024-01-05 00:48:33 +01:00
|
|
|
|
2024-01-05 10:09:35 +01:00
|
|
|
#include <cstdio>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <cstring>
|
|
|
|
#include <time.h>
|
|
|
|
#include <ctime>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory.h>
|
2024-01-04 22:59:17 +01:00
|
|
|
|
2024-01-19 14:43:08 +01:00
|
|
|
#if !defined(_WIN64) && !defined(_WIN32)
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2024-01-05 13:22:42 +01:00
|
|
|
#ifndef SFW_H
|
2024-01-19 00:04:37 +01:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#ifndef _APPLE_NO_IMPL_
|
|
|
|
#define _APPLE_NO_IMPL_
|
2024-01-19 01:41:39 +01:00
|
|
|
#endif //_APPLE_NO_IMPL_
|
|
|
|
#endif //__APPLE__
|
2024-01-19 00:04:37 +01:00
|
|
|
|
2024-01-05 13:22:42 +01:00
|
|
|
#include "sfw.h"
|
2024-01-19 00:04:37 +01:00
|
|
|
|
2024-01-19 01:41:39 +01:00
|
|
|
#ifdef __APPLE__
|
2024-01-19 00:04:37 +01:00
|
|
|
#undef ONLY_GLAD
|
|
|
|
#include "sfw_3rd.m"
|
2024-01-19 01:41:39 +01:00
|
|
|
#endif //__APPLE__
|
2024-01-19 00:04:37 +01:00
|
|
|
|
2024-01-19 01:41:39 +01:00
|
|
|
#endif //SFW_H
|
2024-01-05 13:22:42 +01:00
|
|
|
|
2024-01-18 22:26:48 +01:00
|
|
|
// On OSX sfw_3rd.m has to be compiled manually on Objective C Mode.
|
|
|
|
#ifndef __APPLE__
|
|
|
|
|
2024-01-05 15:23:30 +01:00
|
|
|
#ifndef SFW_3RD_IMPL
|
|
|
|
#define SFW_3RD_IMPL
|
|
|
|
|
2024-01-05 16:36:20 +01:00
|
|
|
#if defined(__linux__)
|
2024-01-05 15:23:30 +01:00
|
|
|
//typedef XID Font;
|
|
|
|
#define Font The_Font_I_dont_care
|
2024-01-05 16:36:20 +01:00
|
|
|
#endif
|
|
|
|
|
2024-01-19 14:43:08 +01:00
|
|
|
// Note: On Windows we need to make sure that
|
|
|
|
// GLFW includes it's needed windows headers first, as it has quite a bit of setup.
|
|
|
|
// Also windows headers can define quite a bit of stuff like far and near macros
|
|
|
|
// Wee need to make sure it's safe to undo those as soon as possible
|
|
|
|
// This means that <windows.h> cannot be included in sfw.h if rendering is enabled.
|
|
|
|
// Also since it pull in lots of defines it probably shouldn't anyway.
|
2024-01-19 01:41:39 +01:00
|
|
|
#undef ONLY_GLAD
|
2024-01-18 22:26:48 +01:00
|
|
|
#include "sfw_3rd.m"
|
2024-01-05 16:36:20 +01:00
|
|
|
|
2024-01-05 15:23:30 +01:00
|
|
|
#undef CursorShape
|
2024-01-05 16:36:20 +01:00
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
#undef Font
|
|
|
|
#undef KEY_ESC
|
|
|
|
#undef KEY_TICK
|
|
|
|
#undef KEY_1
|
|
|
|
#undef KEY_2
|
|
|
|
#undef KEY_3
|
|
|
|
#undef KEY_4
|
|
|
|
#undef KEY_5
|
|
|
|
#undef KEY_6
|
|
|
|
#undef KEY_7
|
|
|
|
#undef KEY_8
|
|
|
|
#undef KEY_9
|
|
|
|
#undef KEY_0
|
|
|
|
#undef KEY_BS
|
|
|
|
#undef KEY_TAB
|
|
|
|
#undef KEY_Q
|
|
|
|
#undef KEY_W
|
|
|
|
#undef KEY_E
|
|
|
|
#undef KEY_R
|
|
|
|
#undef KEY_T
|
|
|
|
#undef KEY_Y
|
|
|
|
#undef KEY_U
|
|
|
|
#undef KEY_I
|
|
|
|
#undef KEY_O
|
|
|
|
#undef KEY_P
|
|
|
|
#undef KEY_CAPS
|
|
|
|
#undef KEY_A
|
|
|
|
#undef KEY_S
|
|
|
|
#undef KEY_D
|
|
|
|
#undef KEY_F
|
|
|
|
#undef KEY_G
|
|
|
|
#undef KEY_H
|
|
|
|
#undef KEY_J
|
|
|
|
#undef KEY_K
|
|
|
|
#undef KEY_L
|
|
|
|
#undef KEY_ENTER
|
|
|
|
#undef KEY_LSHIFT
|
|
|
|
#undef KEY_Z
|
|
|
|
#undef KEY_X
|
|
|
|
#undef KEY_C
|
|
|
|
#undef KEY_V
|
|
|
|
#undef KEY_B
|
|
|
|
#undef KEY_N
|
|
|
|
#undef KEY_M
|
|
|
|
#undef KEY_RSHIFT
|
|
|
|
#undef KEY_UP
|
|
|
|
#undef KEY_LCTRL
|
|
|
|
#undef KEY_LALT
|
|
|
|
#undef KEY_SPACE
|
|
|
|
#undef KEY_RALT
|
|
|
|
#undef KEY_RCTRL
|
|
|
|
#undef KEY_LEFT
|
|
|
|
#undef KEY_DOWN
|
|
|
|
#undef KEY_RIGHT
|
|
|
|
#undef KEY_INS
|
|
|
|
#undef KEY_HOME
|
|
|
|
#undef KEY_PGUP
|
|
|
|
#undef KEY_DEL
|
|
|
|
#undef KEY_END
|
|
|
|
#undef KEY_PGDN
|
|
|
|
#undef KEY_LMETA
|
|
|
|
#undef KEY_RMETA
|
|
|
|
#undef KEY_MENU
|
|
|
|
#undef KEY_PRINT
|
|
|
|
#undef KEY_PAUSE
|
|
|
|
#undef KEY_SCROLL
|
|
|
|
#undef KEY_NUMLOCK
|
|
|
|
#undef KEY_MINUS
|
|
|
|
#undef KEY_EQUAL
|
|
|
|
#undef KEY_LSQUARE
|
|
|
|
#undef KEY_RSQUARE
|
|
|
|
#undef KEY_SEMICOLON
|
|
|
|
#undef KEY_QUOTE
|
|
|
|
#undef KEY_HASH
|
|
|
|
#undef KEY_BAR
|
|
|
|
#undef KEY_COMMA
|
|
|
|
#undef KEY_DOT
|
|
|
|
#undef KEY_SLASH
|
|
|
|
#undef KEY_F1
|
|
|
|
#undef KEY_F2
|
|
|
|
#undef KEY_F3
|
|
|
|
#undef KEY_F4
|
|
|
|
#undef KEY_F5
|
|
|
|
#undef KEY_F6
|
|
|
|
#undef KEY_F7
|
|
|
|
#undef KEY_F8
|
|
|
|
#undef KEY_F9
|
|
|
|
#undef KEY_F10
|
|
|
|
#undef KEY_F11
|
|
|
|
#undef KEY_F12
|
|
|
|
#undef KEY_PAD1
|
|
|
|
#undef KEY_PAD2
|
|
|
|
#undef KEY_PAD3
|
|
|
|
#undef KEY_PAD4
|
|
|
|
#undef KEY_PAD5
|
|
|
|
#undef KEY_PAD6
|
|
|
|
#undef KEY_PAD7
|
|
|
|
#undef KEY_PAD8
|
|
|
|
#undef KEY_PAD9
|
|
|
|
#undef KEY_PAD0
|
|
|
|
#undef KEY_PADADD
|
|
|
|
#undef KEY_PADSUB
|
|
|
|
#undef KEY_PADMUL
|
|
|
|
#undef KEY_PADDIV
|
|
|
|
#undef KEY_PADDOT
|
|
|
|
#undef KEY_PADENTER
|
|
|
|
#undef MOUSE_L
|
|
|
|
#undef MOUSE_M
|
|
|
|
#undef MOUSE_R
|
|
|
|
#undef GAMEPAD_CONNECTED
|
|
|
|
#undef GAMEPAD_A
|
|
|
|
#undef GAMEPAD_B
|
|
|
|
#undef GAMEPAD_X
|
|
|
|
#undef GAMEPAD_Y
|
|
|
|
#undef GAMEPAD_UP
|
|
|
|
#undef GAMEPAD_DOWN
|
|
|
|
#undef GAMEPAD_LEFT
|
|
|
|
#undef GAMEPAD_RIGHT
|
|
|
|
#undef GAMEPAD_MENU
|
|
|
|
#undef GAMEPAD_START
|
|
|
|
#undef GAMEPAD_LB
|
|
|
|
#undef GAMEPAD_RB
|
|
|
|
#undef GAMEPAD_LTHUMB
|
|
|
|
#undef GAMEPAD_RTHUMB
|
|
|
|
#undef WINDOW_BLUR
|
|
|
|
#undef WINDOW_FOCUS
|
|
|
|
#undef WINDOW_CLOSE
|
|
|
|
#undef WINDOW_MINIMIZE
|
|
|
|
#undef WINDOW_MAXIMIZE
|
|
|
|
#undef WINDOW_FULLSCREEN
|
|
|
|
#undef WINDOW_WINDOWED
|
|
|
|
#undef GAMEPAD_LPAD
|
|
|
|
#undef GAMEPAD_LPAD
|
|
|
|
#undef GAMEPAD_LPADY
|
|
|
|
#undef GAMEPAD_RPAD
|
|
|
|
#undef GAMEPAD_RPAD
|
|
|
|
#undef GAMEPAD_RPADY
|
|
|
|
#undef GAMEPAD_LT
|
|
|
|
#undef GAMEPAD_RT
|
|
|
|
#undef GAMEPAD_BATTERY
|
|
|
|
#undef MOUSE
|
|
|
|
#undef MOUSE
|
|
|
|
#undef MOUSE_Y
|
|
|
|
#undef MOUSE_W
|
|
|
|
#undef TOUCH_X1
|
|
|
|
#undef TOUCH_Y1
|
|
|
|
#undef TOUCH_X2
|
|
|
|
#undef TOUCH_Y2
|
|
|
|
#undef WINDOW_RESIZE
|
|
|
|
#undef WINDOW_RESIZE
|
|
|
|
#undef WINDOW_RESIZEY
|
|
|
|
#undef WINDOW_ORIENTATION
|
|
|
|
#undef WINDOW_BATTERY
|
|
|
|
#undef GAMEPAD_GUID
|
|
|
|
#undef GAMEPAD_NAME
|
|
|
|
#endif
|
|
|
|
|
2024-01-19 01:41:39 +01:00
|
|
|
#endif //SFW_3RD_IMPL
|
2024-01-05 00:48:33 +01:00
|
|
|
|
2024-01-18 22:26:48 +01:00
|
|
|
#endif // #ifndef __APPLE__
|
|
|
|
|
2024-01-06 00:23:21 +01:00
|
|
|
//=================== CORE SECTION ===================
|
|
|
|
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/ucaps.h}}
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/mutex.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/mutex.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
//#if defined(DEBUG_ENABLED) && !defined(NO_THREADS)
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/safe_refcount.h"
|
|
|
|
//#include "core/error/error_macros.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/safe_refcount.cpp}}
|
2024-01-18 22:42:51 +01:00
|
|
|
//--STRIP
|
|
|
|
//--STRIP
|
|
|
|
//#include "thread.h"
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/safe_refcount.h"
|
|
|
|
//--STRIP
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/thread.cpp}}
|
2024-01-05 10:09:35 +01:00
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-13 19:08:12 +01:00
|
|
|
//#include "core/sfw_time.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-13 19:08:12 +01:00
|
|
|
{{FILE:sfw/core/sfw_time.cpp}}
|
2024-01-05 10:09:35 +01:00
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/memory.h"
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/safe_refcount.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/memory.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
//{//{//FILE:sfw/core/old/directory.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/pool_vector.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/pool_vector.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "pool_allocator.h"
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/memory.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/pool_allocator.cpp}}
|
|
|
|
|
2024-01-05 15:23:30 +01:00
|
|
|
//--STRIP
|
|
|
|
//#include "core/random_pcg.h"
|
2024-01-13 19:08:12 +01:00
|
|
|
//#include "core/sfw_time.h"
|
2024-01-05 15:23:30 +01:00
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/random_pcg.cpp}}
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "core/error_macros.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/math_funcs.cpp}}
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/ustring.h"
|
|
|
|
//#include "core/color.h"
|
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "core/memory.h"
|
|
|
|
//#include "ucaps.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/ustring.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/logger.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/logger.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/string_name.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/core/string_name.cpp}}
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
//#include "core/aabb.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/aabb.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector3i.h"
|
|
|
|
//#include "core/vector3.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector3i.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/transform_2d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/transform_2d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/projection.h"
|
|
|
|
//#include "core/aabb.h"
|
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "core/plane.h"
|
|
|
|
//#include "core/rect2.h"
|
|
|
|
//#include "core/transform.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/projection.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector3.h"
|
|
|
|
//#include "core/basis.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector3.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/pcg.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/pcg.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector2.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector2.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/basis.h"
|
|
|
|
//#include "core/math_funcs.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/basis.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "face3.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/face3.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector4i.h"
|
|
|
|
//#include "core/vector4.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector4i.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/transform.h"
|
|
|
|
//#include "core/math_funcs.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/transform.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/color.h"
|
|
|
|
//#include "core/math_funcs.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/color.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/quaternion.h"
|
|
|
|
//#include "core/basis.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/quaternion.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/plane.h"
|
|
|
|
//#include "core/math_funcs.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/plane.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector2i.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector2i.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/transform_2d.h" // Includes rect2.h but Rect2 needs Transform2D
|
|
|
|
//#include "core/rect2i.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/rect2.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/transform_2d.h" // Includes rect2.h but Rect2 needs Transform2D
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/rect2i.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/vector4.h"
|
|
|
|
//#include "core/basis.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/core/vector4.cpp}}
|
|
|
|
|
2024-01-05 23:19:16 +01:00
|
|
|
//--STRIP
|
|
|
|
//#include "file_access.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/file_access.cpp}}
|
|
|
|
|
|
|
|
//--STRIP
|
|
|
|
//#include "dir_access.h"
|
|
|
|
//#include "3rd_tinydir.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/dir_access.cpp}}
|
|
|
|
|
2024-01-13 10:08:42 +01:00
|
|
|
//--STRIP
|
|
|
|
//System includes
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/inet_address.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/ustring.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/socket.cpp}}
|
|
|
|
|
2024-01-13 13:06:50 +01:00
|
|
|
//--STRIP
|
|
|
|
//Win Only
|
|
|
|
//#include <avrt.h>
|
|
|
|
//#include <direct.h>
|
|
|
|
//#include <knownfolders.h>
|
|
|
|
//#include <process.h>
|
|
|
|
//#include <regstr.h>
|
|
|
|
//#include <shlobj.h>
|
|
|
|
//#include <wchar.h>
|
|
|
|
//--STRIP
|
2024-01-19 15:36:54 +01:00
|
|
|
{{FILE:sfw/core/sub_process.cpp}}
|
2024-01-13 13:06:50 +01:00
|
|
|
|
2024-01-05 23:47:37 +01:00
|
|
|
//--STRIP
|
|
|
|
//#include "core/pool_vector.h"
|
|
|
|
//#include "core/string_name.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/core/sfw_core.cpp}}
|
|
|
|
|
2024-01-05 23:19:16 +01:00
|
|
|
|
2024-01-05 13:22:42 +01:00
|
|
|
//=================== OBJECT SECTION ===================
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "resource.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/resource.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "object/reference.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/reference.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "object/object.h"
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/logger.h"
|
|
|
|
//#include "object/core_string_names.h"
|
|
|
|
//#include "object/object_rc.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/object.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "ref_ptr.h"
|
|
|
|
//#include "object/reference.h"
|
|
|
|
//#include "object/resource.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/ref_ptr.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core_string_names.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/core_string_names.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "dictionary.h"
|
|
|
|
//#include "core/ordered_hash_map.h"
|
|
|
|
//#include "core/safe_refcount.h"
|
|
|
|
//#include "object/variant.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/dictionary.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "array.h"
|
|
|
|
//#include "core/hashfuncs.h"
|
|
|
|
//#include "core/vector.h"
|
|
|
|
//#include "object/object.h"
|
|
|
|
//#include "object/variant.h"
|
|
|
|
//#include "core/ustring.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/array.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "psignal.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/psignal.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "variant.h"
|
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "object/core_string_names.h"
|
|
|
|
//#include "object/object.h"
|
|
|
|
//#include "object/object_rc.h"
|
|
|
|
//#include "object/resource.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:09:35 +01:00
|
|
|
{{FILE:sfw/object/variant.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "variant.h"
|
|
|
|
//#include "object/core_string_names.h"
|
|
|
|
//#include "object/object.h"
|
|
|
|
//#include "object/object_rc.h"
|
|
|
|
//#include "object/resource.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/object/variant_op.cpp}}
|
|
|
|
|
2024-01-05 13:22:42 +01:00
|
|
|
//=================== RENDER CORE SECTION ===================
|
|
|
|
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/font_data_bm_mini.inc.h}}
|
|
|
|
{{FILE:sfw/render_core/font_data_tables.inc.h}}
|
|
|
|
|
2024-01-19 22:03:10 +01:00
|
|
|
//--STRIP
|
|
|
|
//#include "render_core/texture.h"
|
|
|
|
//#include "core/memory.h"
|
|
|
|
//#include "render_core/app_window.h"
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/frame_buffer.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/texture.h"
|
|
|
|
//#include "core/memory.h"
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "render_core/app_window.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/texture.cpp}}
|
2024-01-19 22:03:10 +01:00
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/application.h"
|
|
|
|
//#include "core/math_defs.h"
|
2024-01-13 19:08:12 +01:00
|
|
|
//#include "core/sfw_time.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/input.h"
|
|
|
|
//#include "render_core/input_map.h"
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "render_core/app_window.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/pool_vector.h"
|
|
|
|
//#include "core/string_name.h"
|
|
|
|
//#include "object/core_string_names.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/application.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/shader.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/shader.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "input_event.h"
|
|
|
|
//#include "render_core/input_map.h"
|
|
|
|
//#include "render_core/keyboard.h"
|
|
|
|
//#include "render_core/shortcut.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/input_event.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/mesh.h"
|
|
|
|
//#include "render_core/shader.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/mesh.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "font.h"
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "app_window.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "3rd_glad.h"
|
|
|
|
//#include "3rd_stb_truetype.h"
|
|
|
|
//#include "font_data_bm_mini.inc.h"
|
|
|
|
//#include "font_data_tables.inc.h"
|
|
|
|
//#include "render_core/image.h"
|
|
|
|
//#include "render_core/mesh.h"
|
|
|
|
//#include "render_core/texture.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/font.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/render_state.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/render_state.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/mesh_utils.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/mesh_utils.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "shortcut.h"
|
|
|
|
//#include "render_core/input_event.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/shortcut.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 13:44:53 +01:00
|
|
|
//{//{FILE:sfw/render_core/primitive_meshes.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/material.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/material.cpp}}
|
2024-01-05 13:44:53 +01:00
|
|
|
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 13:44:53 +01:00
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/color_material_2d.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/color_material.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/colored_material.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/font_material.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/texture_material_2d.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
|
|
|
//--STRIP
|
|
|
|
{{FILE:sfw/render_core/texture_material.cpp}}
|
|
|
|
//--STRIP
|
|
|
|
//#includes own header
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 13:44:53 +01:00
|
|
|
{{FILE:sfw/render_core/transparent_texture_material.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
|
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/image.h"
|
|
|
|
//#include "core/error_macros.h"
|
|
|
|
//#include "core/hash_map.h"
|
|
|
|
//#include "math.h"
|
|
|
|
//#include "core/memory.h"
|
|
|
|
//#include "core/vector3.h"
|
|
|
|
//#include "3rd_stb_image.h"
|
2024-01-13 21:42:17 +01:00
|
|
|
//#include "3rd_stb_image_write.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/image.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "render_core/app_window.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/3rd_glad.h"
|
|
|
|
//#include "3rd_glfw3.h"
|
|
|
|
//#include "core/error_macros.h"
|
2024-01-13 19:08:12 +01:00
|
|
|
//#include "core/sfw_time.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "core/ustring.h"
|
|
|
|
//#include "core/vector4.h"
|
|
|
|
//#include "render_core/application.h"
|
|
|
|
//#include "render_core/input.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-13 19:09:24 +01:00
|
|
|
{{FILE:sfw/render_core/app_window.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "keyboard.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/keyboard.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "input_map.h"
|
|
|
|
//#include "render_core/input.h"
|
|
|
|
//#include "render_core/keyboard.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/input_map.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/scene.h"
|
|
|
|
//#include "render_core/input_event.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/scene.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "input.h"
|
|
|
|
//#include "core/logger.h"
|
2024-01-13 19:08:12 +01:00
|
|
|
//#include "core/sfw_time.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/application.h"
|
|
|
|
//#include "render_core/input_map.h"
|
|
|
|
//#include "render_core/keyboard.h"
|
|
|
|
//#include "render_core/texture.h"
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "render_core/app_window.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/3rd_glfw3.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_core/input.cpp}}
|
|
|
|
|
2024-01-05 13:22:42 +01:00
|
|
|
//=================== RENDER IMMEDIATE SECTION ===================
|
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "renderer.h"
|
|
|
|
//#include "render_core/color_material_2d.h"
|
|
|
|
//#include "render_core/font.h"
|
|
|
|
//#include "render_core/font_material.h"
|
|
|
|
//#include "render_core/material.h"
|
|
|
|
//#include "render_core/mesh.h"
|
|
|
|
//#include "render_core/texture.h"
|
|
|
|
//#include "render_core/texture_material_2d.h"
|
2024-01-13 19:05:11 +01:00
|
|
|
//#include "render_core/app_window.h"
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_core/render_state.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_immediate/renderer.cpp}}
|
|
|
|
|
2024-01-21 12:40:21 +01:00
|
|
|
//=================== RENDER OBJECTS SECTION ===================
|
2024-01-05 13:22:42 +01:00
|
|
|
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/camera_3d.h"
|
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "render_core/render_state.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/camera_3d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/sprite.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/sprite.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/camera_2d.h"
|
|
|
|
//#include "core/math_funcs.h"
|
|
|
|
//#include "render_core/render_state.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/camera_2d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/mesh_instance_3d.h"
|
|
|
|
//#include "render_objects/camera_3d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/mesh_instance_3d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/object_3d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/object_3d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/tile_map.h"
|
|
|
|
//#include "render_objects/camera_2d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/tile_map.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/text_2d.h"
|
|
|
|
//#include "render_core/font.h"
|
|
|
|
//#include "render_core/font_material.h"
|
|
|
|
//#include "render_core/mesh.h"
|
|
|
|
//#include "render_objects/camera_2d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/text_2d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/object_2d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/object_2d.cpp}}
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 10:13:14 +01:00
|
|
|
//#include "render_objects/mesh_instance_2d.h"
|
|
|
|
//#include "render_objects/camera_2d.h"
|
2024-01-05 10:38:20 +01:00
|
|
|
//--STRIP
|
2024-01-05 00:48:33 +01:00
|
|
|
{{FILE:sfw/render_objects/mesh_instance_2d.cpp}}
|
2024-01-04 22:59:17 +01:00
|
|
|
|