├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SCsub ├── commit_id_nogit.cc ├── custom_renderer.h ├── detect.py ├── detect_godot2.py ├── detect_godot3.py ├── detect_godot4.py ├── dl ├── gles2.dl ├── gles3.dl └── procdl.py ├── doc ├── Compile.md └── ReleaseNotes.md ├── dummy_renderer.cc ├── frt.cc ├── frt.h ├── frt_exe.cc ├── frt_godot2.cc ├── frt_godot3.cc ├── frt_godot4.cc ├── frt_lib.h ├── gles2_egl.h ├── logo.png ├── platform_config.h ├── scripts ├── cc.sh └── for_tags.sh ├── sdl2_adapter.h ├── sdl2_godot_map_2_3.h └── sdl2_godot_map_4.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: efornaralabs 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/SCsub -------------------------------------------------------------------------------- /commit_id_nogit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/commit_id_nogit.cc -------------------------------------------------------------------------------- /custom_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/custom_renderer.h -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/detect.py -------------------------------------------------------------------------------- /detect_godot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/detect_godot2.py -------------------------------------------------------------------------------- /detect_godot3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/detect_godot3.py -------------------------------------------------------------------------------- /detect_godot4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/detect_godot4.py -------------------------------------------------------------------------------- /dl/gles2.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/dl/gles2.dl -------------------------------------------------------------------------------- /dl/gles3.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/dl/gles3.dl -------------------------------------------------------------------------------- /dl/procdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/dl/procdl.py -------------------------------------------------------------------------------- /doc/Compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/doc/Compile.md -------------------------------------------------------------------------------- /doc/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/doc/ReleaseNotes.md -------------------------------------------------------------------------------- /dummy_renderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/dummy_renderer.cc -------------------------------------------------------------------------------- /frt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt.cc -------------------------------------------------------------------------------- /frt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt.h -------------------------------------------------------------------------------- /frt_exe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt_exe.cc -------------------------------------------------------------------------------- /frt_godot2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt_godot2.cc -------------------------------------------------------------------------------- /frt_godot3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt_godot3.cc -------------------------------------------------------------------------------- /frt_godot4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt_godot4.cc -------------------------------------------------------------------------------- /frt_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/frt_lib.h -------------------------------------------------------------------------------- /gles2_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/gles2_egl.h -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/logo.png -------------------------------------------------------------------------------- /platform_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/platform_config.h -------------------------------------------------------------------------------- /scripts/cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/scripts/cc.sh -------------------------------------------------------------------------------- /scripts/for_tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/scripts/for_tags.sh -------------------------------------------------------------------------------- /sdl2_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/sdl2_adapter.h -------------------------------------------------------------------------------- /sdl2_godot_map_2_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/sdl2_godot_map_2_3.h -------------------------------------------------------------------------------- /sdl2_godot_map_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cebion/frt/HEAD/sdl2_godot_map_4.h --------------------------------------------------------------------------------