mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-11 17:49:10 -04:00
Redesigned to support disabling features on compilation with `-DSUPPORT_FEATURE=0` REMOVED: `SUPPORT_DEFAULT_FONT`, always supported REMOVED: `SUPPORT_IMAGE_MANIPULATION `, always supported REMOVED: `SUPPORT_TEXT_MANIPULATION`, always supported REDESIGNED: `SUPPORT_FONT_ATLAS_WHITE_REC` to `FONT_ATLAS_CORNER_REC_SIZE` REVIEWED: Config values (other than 0-1) are already defined on respective modules Other config tweaks here and there
This commit is contained in:
4
src/external/rlsw.h
vendored
4
src/external/rlsw.h
vendored
@ -644,7 +644,7 @@ SWAPI void swBindTexture(uint32_t id);
|
||||
#define SW_ARCH_RISCV
|
||||
#endif
|
||||
|
||||
#if defined(RLSW_USE_SIMD_INTRINSICS)
|
||||
#if RLSW_USE_SIMD_INTRINSICS
|
||||
// Check for SIMD vector instructions
|
||||
// NOTE: Compiler is responsible to enable required flags for host device,
|
||||
// supported features are detected at compiler init but varies depending on compiler
|
||||
@ -695,7 +695,7 @@ SWAPI void swBindTexture(uint32_t id);
|
||||
#define SW_HAS_RVV
|
||||
#include <riscv_vector.h>
|
||||
#endif
|
||||
#endif // RLSW_USE_SIMD_INTRINSICS
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define SW_CURLY_INIT(name) name
|
||||
|
||||
Reference in New Issue
Block a user