remove simd, scalar math + compiler optimizations are good enough

This commit is contained in:
asrael 2025-11-11 12:26:22 -06:00
parent e2c7998663
commit 4d84122ef3
8 changed files with 41 additions and 509 deletions

View file

@ -21,11 +21,8 @@ typedef enum {
} pxl8_log_level;
#ifndef PXL8_LOG_LEVEL
#ifdef DEBUG
#define PXL8_LOG_LEVEL PXL8_LOG_LEVEL_DEBUG
#else
#define PXL8_LOG_LEVEL PXL8_LOG_LEVEL_INFO
#endif
// Temporary: Always use DEBUG level for benchmarking
#define PXL8_LOG_LEVEL PXL8_LOG_LEVEL_DEBUG
#endif
static pxl8_log_level pxl8_current_log_level = PXL8_LOG_LEVEL;