// Copyright 2019 The SwiftShader Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "Win32SurfaceKHR.hpp" #include "System/Debug.hpp" #include "Vulkan/VkDeviceMemory.hpp" #include namespace { VkExtent2D getWindowSize(HWND hwnd) { ASSERT(IsWindow(hwnd) == TRUE); RECT clientRect = {}; BOOL status = GetClientRect(hwnd, &clientRect); ASSERT(status != 0); int windowWidth = clientRect.right - clientRect.left; int windowHeight = clientRect.bottom - clientRect.top; return { static_cast(windowWidth), static_cast(windowHeight) }; } } // namespace namespace vk { Win32SurfaceKHR::Win32SurfaceKHR(const VkWin32SurfaceCreateInfoKHR *pCreateInfo, void *mem) : hwnd(pCreateInfo->hwnd) { ASSERT(IsWindow(hwnd) == TRUE); windowContext = GetDC(hwnd); bitmapContext = CreateCompatibleDC(windowContext); lazyCreateFrameBuffer(); } void Win32SurfaceKHR::destroySurface(const VkAllocationCallbacks *pAllocator) { destroyFrameBuffer(); ReleaseDC(hwnd, windowContext); DeleteDC(bitmapContext); } size_t Win32SurfaceKHR::ComputeRequiredAllocationSize(const VkWin32SurfaceCreateInfoKHR *pCreateInfo) { return 0; } VkResult Win32SurfaceKHR::getSurfaceCapabilities(VkSurfaceCapabilitiesKHR *pSurfaceCapabilities) const { setCommonSurfaceCapabilities(pSurfaceCapabilities); if(!IsWindow(hwnd)) { VkExtent2D extent = { 0, 0 }; pSurfaceCapabilities->currentExtent = extent; pSurfaceCapabilities->minImageExtent = extent; pSurfaceCapabilities->maxImageExtent = extent; return VK_ERROR_SURFACE_LOST_KHR; } VkExtent2D extent = getWindowSize(hwnd); pSurfaceCapabilities->currentExtent = extent; pSurfaceCapabilities->minImageExtent = extent; pSurfaceCapabilities->maxImageExtent = extent; return VK_SUCCESS; } void Win32SurfaceKHR::attachImage(PresentImage *image) { // Nothing to do here, the current implementation based on GDI blits on // present instead of associating the image with the surface. } void Win32SurfaceKHR::detachImage(PresentImage *image) { // Nothing to do here, the current implementation based on GDI blits on // present instead of associating the image with the surface. } VkResult Win32SurfaceKHR::present(PresentImage *image) { // Recreate frame buffer in case window size has changed lazyCreateFrameBuffer(); if(!framebuffer) { // e.g. window width or height is 0 return VK_SUCCESS; } const VkExtent3D &extent = image->getImage()->getExtent(); if(windowExtent.width != extent.width || windowExtent.height != extent.height) { return VK_ERROR_OUT_OF_DATE_KHR; } image->getImage()->copyTo(reinterpret_cast(framebuffer), bitmapRowPitch); StretchBlt(windowContext, 0, 0, extent.width, extent.height, bitmapContext, 0, 0, extent.width, extent.height, SRCCOPY); return VK_SUCCESS; } void Win32SurfaceKHR::lazyCreateFrameBuffer() { auto currWindowExtent = getWindowSize(hwnd); if(currWindowExtent.width == windowExtent.width && currWindowExtent.height == windowExtent.height) { return; } windowExtent = currWindowExtent; if(framebuffer) { destroyFrameBuffer(); } if(windowExtent.width == 0 || windowExtent.height == 0) { return; } BITMAPINFO bitmapInfo = {}; bitmapInfo.bmiHeader.biSize = sizeof(BITMAPINFO); bitmapInfo.bmiHeader.biBitCount = 32; bitmapInfo.bmiHeader.biPlanes = 1; bitmapInfo.bmiHeader.biHeight = -static_cast(windowExtent.height); // Negative for top-down DIB, origin in upper-left corner bitmapInfo.bmiHeader.biWidth = windowExtent.width; bitmapInfo.bmiHeader.biCompression = BI_RGB; bitmap = CreateDIBSection(bitmapContext, &bitmapInfo, DIB_RGB_COLORS, &framebuffer, 0, 0); ASSERT(bitmap != NULL); SelectObject(bitmapContext, bitmap); BITMAP header; int status = GetObject(bitmap, sizeof(BITMAP), &header); ASSERT(status != 0); bitmapRowPitch = static_cast(header.bmWidthBytes); } void Win32SurfaceKHR::destroyFrameBuffer() { SelectObject(bitmapContext, NULL); DeleteObject(bitmap); bitmap = {}; bitmapRowPitch = 0; framebuffer = nullptr; } } // namespace vk