| // 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. |
| |
| #ifndef SWIFTSHADER_VKSWAPCHAINKHR_HPP |
| #define SWIFTSHADER_VKSWAPCHAINKHR_HPP |
| |
| |
| #include "Vulkan/VkObject.hpp" |
| #include "Vulkan/VkImage.hpp" |
| #include "VkSurfaceKHR.hpp" |
| |
| #include <vector> |
| |
| namespace vk |
| { |
| |
| class SwapchainKHR : public Object<SwapchainKHR, VkSwapchainKHR> |
| { |
| public: |
| SwapchainKHR(const VkSwapchainCreateInfoKHR* pCreateInfo, void* mem); |
| ~SwapchainKHR() = delete; |
| |
| void destroy(const VkAllocationCallbacks* pAllocator); |
| |
| static size_t ComputeRequiredAllocationSize(const VkSwapchainCreateInfoKHR* pCreateInfo); |
| |
| void retire(); |
| |
| VkResult createImages(VkDevice device); |
| |
| uint32_t getImageCount() const; |
| VkResult getImages(uint32_t *pSwapchainImageCount, VkImage *pSwapchainImages) const; |
| |
| VkResult getNextImage(uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex); |
| |
| void present(uint32_t index); |
| |
| private: |
| VkSwapchainCreateInfoKHR createInfo; |
| std::vector<PresentImage> images; |
| bool retired; |
| |
| void resetImages(); |
| }; |
| |
| static inline SwapchainKHR* Cast(VkSwapchainKHR object) |
| { |
| return reinterpret_cast<SwapchainKHR*>(object.get()); |
| } |
| |
| } |
| |
| #endif //SWIFTSHADER_VKSWAPCHAINKHR_HPP |