Graphics/RenderQueue: Remake it with a naive implementation

The idea is to improve it in the future, after profiling
This commit is contained in:
Jérôme Leclercq
2021-07-28 13:11:03 +02:00
parent 335b48056f
commit 3de0edec6f
8 changed files with 48 additions and 228 deletions

View File

@@ -71,6 +71,9 @@ namespace Nz
using type = void; //< FIXME: I can't make SFINAE work
};
template<typename T>
using Pointer = T*;
template<typename T>
bool Serialize(SerializationContext& context, T&& value);