Fixing more stuff

This commit is contained in:
Dynamitos
2024-01-20 13:22:47 +01:00
parent 8dc52fa151
commit 4868fb51ac
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ int main()
#elif __APPLE__
std::filesystem::path outputPath = "/Users/dynamitos/TrackClearGame";
std::filesystem::path sourcePath= "/Users/dynamitos/TrackClear";
std::filesystem::path binaryPath = sourcePath / "cmake" / "libTrackClear.dynlib";
std::filesystem::path binaryPath = sourcePath / "cmake" / "libTrackClear.dylib";
#else
std::filesystem::path outputPath = "/home/dynamitos/TrackClearGame";
std::filesystem::path sourcePath= "/home/dynamitos/TrackClear";
+2 -1
View File
@@ -380,9 +380,10 @@ void Graphics::initInstance(GraphicsInitializer initInfo)
.applicationVersion = VK_MAKE_VERSION(0, 0, 1),
.pEngineName = initInfo.engineName,
.engineVersion = VK_MAKE_VERSION(0, 0, 1),
.apiVersion = VK_API_VERSION_1_2,
.apiVersion = VK_API_VERSION_1_3,
};
Array<const char*> extensions = getRequiredExtensions();
for (uint32 i = 0; i < initInfo.instanceExtensions.size(); ++i)
{