- compile fixes for mac os

This commit is contained in:
Rachael Alexanderson 2023-09-16 12:18:50 -04:00 committed by Magnus Norddahl
commit 861450ee3f
4 changed files with 6 additions and 5 deletions

View file

@ -195,7 +195,7 @@ void VulkanRenderDevice::InitializeState()
for (int threadIndex = 0; threadIndex < MaxThreads; threadIndex++)
{
#ifdef __APPLE__
mRenderState.push_back(std::make_unique<VkRenderStateMolten>(this));
mRenderState.push_back(std::make_unique<VkRenderStateMolten>(this, 0));
#else
mRenderState.push_back(std::make_unique<VkRenderState>(this, 0));
#endif