blob: cdbb2ca83e9e56f7901cd352f674533eef3e0bc6 [file] [log] [blame]
Nicolas Capensd3545372019-08-09 13:59:18 -04001// Copyright 2019 The SwiftShader Authors. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
Hernan Liatisc6eb41b2019-02-22 11:12:59 -08004// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "XlibSurfaceKHR.hpp"
16
Hernan Liatis6b12a502019-03-01 15:06:13 -080017#include "Vulkan/VkDeviceMemory.hpp"
Alexis Hetu63ae9242019-06-06 13:52:15 -040018#include "Vulkan/VkImage.hpp"
Hernan Liatis6b12a502019-03-01 15:06:13 -080019
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080020namespace vk {
21
Ben Clayton45c697a2019-12-17 20:38:03 +000022XlibSurfaceKHR::XlibSurfaceKHR(const VkXlibSurfaceCreateInfoKHR *pCreateInfo, void *mem)
23 : pDisplay(pCreateInfo->dpy)
24 , window(pCreateInfo->window)
Hernan Liatis6b12a502019-03-01 15:06:13 -080025{
26 int screen = DefaultScreen(pDisplay);
27 gc = libX11->XDefaultGC(pDisplay, screen);
28
29 XVisualInfo xVisual;
30 Status status = libX11->XMatchVisualInfo(pDisplay, screen, 32, TrueColor, &xVisual);
Ben Clayton45c697a2019-12-17 20:38:03 +000031 bool match = (status != 0 && xVisual.blue_mask == 0xFF);
Hernan Liatisf945a5e2019-03-06 15:31:04 -080032 visual = match ? xVisual.visual : libX11->XDefaultVisual(pDisplay, screen);
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080033}
34
Hernan Liatis6b12a502019-03-01 15:06:13 -080035void XlibSurfaceKHR::destroySurface(const VkAllocationCallbacks *pAllocator)
36{
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080037}
38
Hernan Liatis6b12a502019-03-01 15:06:13 -080039size_t XlibSurfaceKHR::ComputeRequiredAllocationSize(const VkXlibSurfaceCreateInfoKHR *pCreateInfo)
40{
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080041 return 0;
42}
43
Hernan Liatis6b12a502019-03-01 15:06:13 -080044void XlibSurfaceKHR::getSurfaceCapabilities(VkSurfaceCapabilitiesKHR *pSurfaceCapabilities) const
45{
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080046 SurfaceKHR::getSurfaceCapabilities(pSurfaceCapabilities);
47
48 XWindowAttributes attr;
49 libX11->XGetWindowAttributes(pDisplay, window, &attr);
Ben Clayton45c697a2019-12-17 20:38:03 +000050 VkExtent2D extent = { static_cast<uint32_t>(attr.width), static_cast<uint32_t>(attr.height) };
Hernan Liatisc6eb41b2019-02-22 11:12:59 -080051
52 pSurfaceCapabilities->currentExtent = extent;
53 pSurfaceCapabilities->minImageExtent = extent;
54 pSurfaceCapabilities->maxImageExtent = extent;
55}
56
Ben Clayton45c697a2019-12-17 20:38:03 +000057void XlibSurfaceKHR::attachImage(PresentImage *image)
Hernan Liatis6b12a502019-03-01 15:06:13 -080058{
Hernan Liatis6b12a502019-03-01 15:06:13 -080059 XWindowAttributes attr;
60 libX11->XGetWindowAttributes(pDisplay, window, &attr);
61
Alexis Hetu63ae9242019-06-06 13:52:15 -040062 VkExtent3D extent = image->getImage()->getMipLevelExtent(VK_IMAGE_ASPECT_COLOR_BIT, 0);
Hernan Liatis6b12a502019-03-01 15:06:13 -080063
Alexis Hetu63ae9242019-06-06 13:52:15 -040064 int bytes_per_line = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0);
Ben Clayton45c697a2019-12-17 20:38:03 +000065 char *buffer = static_cast<char *>(image->getImageMemory()->getOffsetPointer(0));
Hernan Liatisf945a5e2019-03-06 15:31:04 -080066
Ben Clayton45c697a2019-12-17 20:38:03 +000067 XImage *xImage = libX11->XCreateImage(pDisplay, visual, attr.depth, ZPixmap, 0, buffer, extent.width, extent.height, 32, bytes_per_line);
Hernan Liatisf945a5e2019-03-06 15:31:04 -080068
69 imageMap[image] = xImage;
70}
71
Ben Clayton45c697a2019-12-17 20:38:03 +000072void XlibSurfaceKHR::detachImage(PresentImage *image)
Hernan Liatisf945a5e2019-03-06 15:31:04 -080073{
74 auto it = imageMap.find(image);
75 if(it != imageMap.end())
76 {
Ben Clayton45c697a2019-12-17 20:38:03 +000077 XImage *xImage = it->second;
78 xImage->data = nullptr; // the XImage does not actually own the buffer
Hernan Liatisf945a5e2019-03-06 15:31:04 -080079 XDestroyImage(xImage);
80 imageMap.erase(image);
81 }
82}
83
Ben Clayton45c697a2019-12-17 20:38:03 +000084VkResult XlibSurfaceKHR::present(PresentImage *image)
Hernan Liatisf945a5e2019-03-06 15:31:04 -080085{
86 auto it = imageMap.find(image);
87 if(it != imageMap.end())
88 {
Ben Clayton45c697a2019-12-17 20:38:03 +000089 XImage *xImage = it->second;
Hernan Liatisf945a5e2019-03-06 15:31:04 -080090
91 if(xImage->data)
92 {
Jonah Ryan-Davisf2637d02019-11-25 14:04:55 -050093 XWindowAttributes attr;
94 libX11->XGetWindowAttributes(pDisplay, window, &attr);
Ben Clayton45c697a2019-12-17 20:38:03 +000095 VkExtent2D windowExtent = { static_cast<uint32_t>(attr.width), static_cast<uint32_t>(attr.height) };
Alexis Hetu63ae9242019-06-06 13:52:15 -040096 VkExtent3D extent = image->getImage()->getMipLevelExtent(VK_IMAGE_ASPECT_COLOR_BIT, 0);
Jonah Ryan-Davisf2637d02019-11-25 14:04:55 -050097
Nicolas Capens81bc9d92019-12-16 15:05:57 -050098 if(windowExtent.width != extent.width || windowExtent.height != extent.height)
Jonah Ryan-Davisf2637d02019-11-25 14:04:55 -050099 {
100 return VK_ERROR_OUT_OF_DATE_KHR;
101 }
102
Hernan Liatisf945a5e2019-03-06 15:31:04 -0800103 libX11->XPutImage(pDisplay, window, gc, xImage, 0, 0, 0, 0, extent.width, extent.height);
104 }
105 }
Antonio Maiorano26c6c4a2019-10-17 15:33:47 -0400106
107 return VK_SUCCESS;
Hernan Liatis6b12a502019-03-01 15:06:13 -0800108}
109
Ben Clayton45c697a2019-12-17 20:38:03 +0000110} // namespace vk