Lines Matching defs:swapchainCreateInfo
497 const SwapchainCreateInfo& swapchainCreateInfo, const RenderHandleReference& replacedHandle, const string_view name)
510 const bool checkReplaceWindow = (swapchainCreateInfo.window.window != 0);
511 const bool checkReplaceSurface = (swapchainCreateInfo.surfaceHandle != 0);
516 replace = replace || (checkReplaceWindow && (cmpSwap.window == swapchainCreateInfo.window.window));
517 replace = replace || (checkReplaceSurface && (cmpSwap.surfaceHandle == swapchainCreateInfo.surfaceHandle));
551 swapchainData.swapchain = CreateDeviceSwapchain(swapchainCreateInfo);
565 swapchainData.surfaceHandle = swapchainCreateInfo.surfaceHandle;
566 swapchainData.window = swapchainCreateInfo.window.window;
615 (swapchainCreateInfo.swapchainFlags & SwapchainFlagBits::CORE_SWAPCHAIN_DEPTH_BUFFER_BIT)) {
620 (swapchainCreateInfo.swapchainFlags & SwapchainFlagBits::CORE_SWAPCHAIN_DEPTH_BUFFER_BIT)) {
629 const SwapchainCreateInfo& swapchainCreateInfo, const RenderHandleReference& replacedHandle, const string_view name)
635 return CreateSwapchainImpl(swapchainCreateInfo, replacedHandle, name);
638 RenderHandleReference Device::CreateSwapchainHandle(const SwapchainCreateInfo& swapchainCreateInfo)
642 return CreateSwapchainImpl(swapchainCreateInfo, {}, {});
645 void Device::CreateSwapchain(const SwapchainCreateInfo& swapchainCreateInfo)
649 CreateSwapchainImpl(swapchainCreateInfo, {}, {});