diff --git a/shell/mac/ViewController.mm b/shell/mac/ViewController.mm index 4681ff7980..cc854c7fea 100644 --- a/shell/mac/ViewController.mm +++ b/shell/mac/ViewController.mm @@ -302,7 +302,8 @@ - (void)loadView { devices = igl::vulkan::HWDevice::queryDevices( *context, igl::HWDeviceQueryDesc(igl::HWDeviceType::IntegratedGpu), nullptr); } - auto device = igl::vulkan::HWDevice::create(std::move(context), devices[0], 0, 0); + auto device = igl::vulkan::HWDevice::create( + std::move(context), devices[0], 0, 0, 0, nullptr, nullptr, "IGL Shell", nullptr); shellPlatform_ = std::make_shared(std::move(device)); [vulkanView prepareVulkan:shellPlatform_];