Home
last modified time | relevance | path

Searched refs:windowExtent (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/src/WSI/
DWin32SurfaceKHR.cpp93 if(windowExtent.width != extent.width || windowExtent.height != extent.height) in present()
112 if(currWindowExtent.width == windowExtent.width && currWindowExtent.height == windowExtent.height) in lazyCreateFrameBuffer()
117 windowExtent = currWindowExtent; in lazyCreateFrameBuffer()
124 if(windowExtent.width == 0 || windowExtent.height == 0) in lazyCreateFrameBuffer()
133 …bitmapInfo.bmiHeader.biHeight = -static_cast<LONG>(windowExtent.height); // Negative for top-down… in lazyCreateFrameBuffer()
134 bitmapInfo.bmiHeader.biWidth = windowExtent.width; in lazyCreateFrameBuffer()
DXlibSurfaceKHR.cpp95 …VkExtent2D windowExtent = { static_cast<uint32_t>(attr.width), static_cast<uint32_t>(attr.height) … in present() local
98 if(windowExtent.width != extent.width || windowExtent.height != extent.height) in present()
DXcbSurfaceKHR.cpp148 …VkExtent2D windowExtent = { static_cast<uint32_t>(geom->width), static_cast<uint32_t>(geom->height… in present() local
152 if(windowExtent.width != extent.width || windowExtent.height != extent.height) in present()
DMetalSurface.mm147 VkExtent2D windowExtent = metalLayer->getExtent();
150 if(windowExtent.width != extent.width || windowExtent.height != extent.height)
DWin32SurfaceKHR.hpp55 VkExtent2D windowExtent = {}; member in vk::Win32SurfaceKHR