Remove "MemoryManager" and very old code

This commit is contained in:
SirLynix
2022-09-24 14:25:52 +02:00
parent 6bf4ccaae1
commit 9cd7976a91
70 changed files with 21 additions and 1221 deletions

View File

@@ -32,9 +32,6 @@
// La taille du buffer d'Instancing (définit le nombre maximum d'instances en un rendu)
#define NAZARA_RENDERER_INSTANCE_BUFFER_SIZE 1 * 1024 * 1024
// 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_RENDERER_MANAGE_MEMORY 0
// Active le paramère debug des paramètres des contextes par défaut (Perte de performances mais capable de recevoir des messages d'OpenGL)
#define NAZARA_RENDERER_OPENGL_DEBUG 0

View File

@@ -7,17 +7,11 @@
#ifndef NAZARA_RENDERER_CONFIGCHECK_HPP
#define NAZARA_RENDERER_CONFIGCHECK_HPP
/// Ce fichier sert à vérifier la valeur des constantes du fichier Config.hpp
/// This file is used to check the constant values defined in Config.hpp
#include <type_traits>
#define NazaraCheckTypeAndVal(name, type, op, val, err) static_assert(std::is_ ##type <decltype(name)>::value && name op val, #type err)
// On force la valeur de MANAGE_MEMORY en mode debug
#if defined(NAZARA_DEBUG) && !NAZARA_RENDERER_MANAGE_MEMORY
#undef NAZARA_RENDERER_MANAGE_MEMORY
#define NAZARA_RENDERER_MANAGE_MEMORY 0
#endif
NazaraCheckTypeAndVal(NAZARA_RENDERER_INSTANCE_BUFFER_SIZE, integral, >, 0, " shall be a strictly positive integer");
#undef NazaraCheckTypeAndVal

View File

@@ -3,8 +3,3 @@
// For conditions of distribution and use, see copyright notice in Config.hpp
// no header guards
#include <Nazara/Renderer/Config.hpp>
#if NAZARA_RENDERER_MANAGE_MEMORY
#include <Nazara/Core/Debug/NewRedefinition.hpp>
#endif

View File

@@ -3,9 +3,3 @@
// For conditions of distribution and use, see copyright notice in Config.hpp
// no header guards
// On suppose que Debug.hpp a déjà été inclus, tout comme Config.hpp
#if NAZARA_RENDERER_MANAGE_MEMORY
#undef delete
#undef new
#endif