Add Linux support
- Add linux build system using MakeGen - Fix a swapchain validation error, likelydue to my linux system using a different vulkan version - Make DescriptorPool take in amount of descriptors it needs, instead of allocating a mass amount for every pool, causing loads of RAM/VRAM usage
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
#include <map>
|
||||
#include <typeindex>
|
||||
#include <unordered_set>
|
||||
#include <vector>
|
||||
|
||||
namespace Copium
|
||||
{
|
||||
@@ -36,7 +35,7 @@ namespace Copium
|
||||
template <typename SystemClass>
|
||||
void RemoveSystem()
|
||||
{
|
||||
systemPool->MoveSystemBefore(typeid(SystemClass));
|
||||
systemPool->RemoveSystem(typeid(SystemClass));
|
||||
}
|
||||
|
||||
void UpdateSystems();
|
||||
|
||||
Reference in New Issue
Block a user