/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/ThirdParty/ozz/base/maths/simd_math.cc
63 строки
3 KB
Jan Krassnigg
Updated ozz, fixed IK, anim clip import, enabled auto scene transform (#1546)
26 апр 2025, 09:55
Не верифицирован
26 апр 2025, 09:55
6d06ad7
Код
Авторство
О чём код?
//----------------------------------------------------------------------------// // // // ozz-animation is hosted at http://github.com/guillaumeblanc/ozz-animation // // and distributed under the MIT License (MIT). // // // // Copyright (c) Guillaume Blanc // // // // Permission is hereby granted, free of charge, to any person obtaining a // // copy of this software and associated documentation files (the "Software"), // // to deal in the Software without restriction, including without limitation // // the rights to use, copy, modify, merge, publish, distribute, sublicense, // // and/or sell copies of the Software, and to permit persons to whom the // // Software is furnished to do so, subject to the following conditions: // // // // The above copyright notice and this permission notice shall be included in // // all copies or substantial portions of the Software. // // // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // // DEALINGS IN THE SOFTWARE. // // // //----------------------------------------------------------------------------// #include "ozz/base/maths/simd_math.h" namespace ozz { namespace math { // Select compile time name of the simd implementation #if defined(OZZ_SIMD_AVX2) && defined(OZZ_SIMD_FMA) #define _OZZ_SIMD_IMPLEMENTATION "AVX2-FMA" #elif defined(OZZ_SIMD_AVX2) #define _OZZ_SIMD_IMPLEMENTATION "AVX2" #elif defined(OZZ_SIMD_AVX) #define _OZZ_SIMD_IMPLEMENTATION "AVX" #elif defined(OZZ_SIMD_SSE4_2) #define _OZZ_SIMD_IMPLEMENTATION "SSE4.2" #elif defined(OZZ_SIMD_SSE4_1) #define _OZZ_SIMD_IMPLEMENTATION "SSE4.1" #elif defined(OZZ_SIMD_SSSE3) #define _OZZ_SIMD_IMPLEMENTATION "SSSE3" #elif defined(OZZ_SIMD_SSE3) #define _OZZ_SIMD_IMPLEMENTATION "SSE3" #elif defined(OZZ_SIMD_SSEx) #define _OZZ_SIMD_IMPLEMENTATION "SSE2" #elif defined(OZZ_SIMD_ARM_NEON) #define _OZZ_SIMD_IMPLEMENTATION "ARM NEON" #elif defined(OZZ_SIMD_REF) #define _OZZ_SIMD_IMPLEMENTATION "Reference (scalar)" #else // Not defined #endif #pragma message("Ozz libraries were built with " _OZZ_SIMD_IMPLEMENTATION \ " math implementation") const char* SimdImplementationName() { return _OZZ_SIMD_IMPLEMENTATION; } } // namespace math } // namespace ozz