= []() {
MF_INFO(Journal::Component::IO, Journal::Context::Init,
"STB Image: No SIMD optimizations (scalar fallback)");
return true;
}()
#define MF_INFO(comp, ctx,...)
192 {
193#ifdef STBI_SSE2
194 MF_INFO(Journal::Component::IO, Journal::Context::Init,
195 "STB Image: SSE2 SIMD optimizations enabled (x64)");
196#elif defined(STBI_NEON)
197 MF_INFO(Journal::Component::IO, Journal::Context::Init,
198 "STB Image: NEON SIMD optimizations enabled (ARM64)");
199#else
200 MF_INFO(Journal::Component::IO, Journal::Context::Init,
201 "STB Image: No SIMD optimizations (scalar fallback)");
202#endif
203 return true;
204}();