Fix varius minor issues

- Asset will now generate a uuid if it is not inside the meta file
- Device cleanup/idling improved
- FileSystem now prints which file failed to open
- Renderer header file now has the same parameter names as the source file
This commit is contained in:
Thraix
2025-08-10 20:18:41 +02:00
parent 4d2dfce31c
commit aca495960f
7 changed files with 35 additions and 18 deletions
+1 -1
View File
@@ -26,6 +26,7 @@ namespace Copium
uint32_t FindMemoryType(uint32_t typeFilter, VkMemoryPropertyFlags properties);
void WaitIdle();
void WaitIdleIfCommandQueued();
void CleanupIdleQueue();
void QueueIdleCommand(std::function<void()> idleCommand);
private:
@@ -41,7 +42,6 @@ namespace Copium
std::queue<std::function<void()>> idleCommands;
// TODO end
private:
void SelectPhysicalDevice();
void InitializeLogicalDevice();