Removed UTILITY_MULTITHREADED_SKINNING config

Useless since SkinningManager is now handling this at runtime


Former-commit-id: 4a8b2d08de2f5c367821786d2cdff5dd45daadef
This commit is contained in:
Lynix 2014-07-08 10:58:58 +02:00
parent c4b10dddda
commit 9969d5f5f3
2 changed files with 0 additions and 11 deletions

View File

@ -32,9 +32,6 @@
// Utilise un manager de mémoire pour gérer les allocations dynamiques (détecte les leaks au prix d'allocations/libérations dynamiques plus lentes)
#define NAZARA_UTILITY_MANAGE_MEMORY 0
// Le skinning doit-il prendre avantage du multi-threading ? (Boost de performances sur les processeurs multi-coeurs)
#define NAZARA_UTILITY_MULTITHREADED_SKINNING 0
// Active les tests de sécurité basés sur le code (Conseillé pour le développement)
#define NAZARA_UTILITY_SAFE 1

View File

@ -54,14 +54,6 @@ bool NzUtility::Initialize()
return false;
}
#if NAZARA_UTILITY_MULTITHREADED_SKINNING
if (!NzTaskScheduler::Initialize())
{
NazaraError("Failed to initialize task scheduler");
return false;
}
#endif
if (!NzVertexDeclaration::Initialize())
{
NazaraError("Failed to initialize vertex declarations");