Lines Matching refs:fSurface
40 , fSurface(VK_NULL_HANDLE) in VulkanWindowContext()
123 fSurface = fCreateVkSurfaceFn(fInstance); in initializeContext()
124 if (VK_NULL_HANDLE == fSurface) { in initializeContext()
132 fSurface, &supported); in initializeContext()
154 VkResult res = fGetPhysicalDeviceSurfaceCapabilitiesKHR(fPhysicalDevice, fSurface, &caps); in createSwapchain()
160 res = fGetPhysicalDeviceSurfaceFormatsKHR(fPhysicalDevice, fSurface, &surfaceFormatCount, in createSwapchain()
168 res = fGetPhysicalDeviceSurfaceFormatsKHR(fPhysicalDevice, fSurface, &surfaceFormatCount, in createSwapchain()
175 res = fGetPhysicalDeviceSurfacePresentModesKHR(fPhysicalDevice, fSurface, &presentModeCount, in createSwapchain()
183 res = fGetPhysicalDeviceSurfacePresentModesKHR(fPhysicalDevice, fSurface, &presentModeCount, in createSwapchain()
288 swapchainCreateInfo.surface = fSurface; in createSwapchain()
446 if (VK_NULL_HANDLE != fSurface) { in destroyContext()
447 fDestroySurfaceKHR(fInstance, fSurface, nullptr); in destroyContext()
448 fSurface = VK_NULL_HANDLE; in destroyContext()