- Started interface for renderers

- Renamed fproc -> langproc (I'll probably never settle on a naming convention for this)
 - Refactored set to use median psl
This commit is contained in:
2025-08-02 13:17:20 -04:00
parent 3d4ea4398a
commit 3d42dea9eb
39 changed files with 962 additions and 164 deletions

View File

@@ -164,18 +164,18 @@ add_library(fennec STATIC
include/fennec/math/detail/_vector_traits.h
# FPROC ================================================================================================================
# langproc ================================================================================================================
# Strings
include/fennec/fproc/strings/cstring.h
include/fennec/fproc/strings/locale.h
include/fennec/fproc/strings/string.h
include/fennec/langproc/strings/cstring.h
include/fennec/langproc/strings/locale.h
include/fennec/langproc/strings/string.h
include/fennec/fproc/strings/detail/_ctype.h
include/fennec/langproc/strings/detail/_ctype.h
# Filesystem
include/fennec/fproc/filesystem/file.h source/fproc/filesystem/file.cpp
include/fennec/fproc/filesystem/path.h source/fproc/filesystem/path.cpp
include/fennec/langproc/filesystem/file.h source/langproc/filesystem/file.cpp
include/fennec/langproc/filesystem/path.h source/langproc/filesystem/path.cpp
# PLATFORM =============================================================================================================
@@ -190,6 +190,10 @@ add_library(fennec STATIC
${FENNEC_EXTRA_SOURCES}
include/fennec/renderers/interface/renderer.h
include/fennec/containers/rdtree.h
include/fennec/scene/scene.h
include/fennec/scene/component.h
include/fennec/core/system.h
)
add_dependencies(fennec metaprogramming)