2024-11-28 06:36:17 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024-2025 Arm Limited.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file present_id.hpp
|
|
|
|
|
*
|
|
|
|
|
* @brief Contains the base class declaration for the VK_KHR_present_id extension.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <util/custom_allocator.hpp>
|
2025-09-05 15:06:38 +00:00
|
|
|
#include <util/custom_mutex.hpp>
|
2024-11-28 06:36:17 +00:00
|
|
|
#include <util/macros.hpp>
|
2025-05-09 16:04:39 +00:00
|
|
|
#include <util/log.hpp>
|
2025-04-01 09:27:18 +00:00
|
|
|
#include <atomic>
|
2025-05-09 16:04:39 +00:00
|
|
|
#include <condition_variable>
|
2024-11-28 06:36:17 +00:00
|
|
|
|
|
|
|
|
#include "wsi_extension.hpp"
|
|
|
|
|
|
|
|
|
|
namespace wsi
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Present ID extension class
|
|
|
|
|
*
|
|
|
|
|
* This class defines the present ID extension
|
|
|
|
|
* features.
|
|
|
|
|
*/
|
|
|
|
|
class wsi_ext_present_id : public wsi_ext
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief The name of the extension.
|
|
|
|
|
*/
|
|
|
|
|
WSI_DEFINE_EXTENSION(VK_KHR_PRESENT_ID_EXTENSION_NAME);
|
|
|
|
|
|
|
|
|
|
/**
|
2025-04-01 09:27:18 +00:00
|
|
|
* @brief Marks the given present ID delivered (i.e. its image has been displayed).
|
2024-11-28 06:36:17 +00:00
|
|
|
*/
|
2025-10-31 10:35:08 +00:00
|
|
|
virtual void mark_delivered(uint64_t present_id);
|
2024-11-28 06:36:17 +00:00
|
|
|
|
2025-06-06 16:41:12 +00:00
|
|
|
/**
|
|
|
|
|
* @brief Sets the error state for all pending and future image requests.
|
|
|
|
|
* Any error state other than VK_SUCCESS will cause all current and
|
|
|
|
|
* future calls to vkWaitForPresentKHR to fail with @p error_code.
|
|
|
|
|
*
|
|
|
|
|
* @param error_code Vulkan error code
|
|
|
|
|
*/
|
|
|
|
|
void set_error_state(VkResult error_code);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get the current error state
|
|
|
|
|
*
|
|
|
|
|
* @return VkResult error state
|
|
|
|
|
*/
|
|
|
|
|
VkResult get_error_state();
|
|
|
|
|
|
2025-05-09 16:04:39 +00:00
|
|
|
/**
|
|
|
|
|
* @brief Waits for present ID to be above or equal to the @p value.
|
|
|
|
|
*
|
2025-06-06 16:41:12 +00:00
|
|
|
* @param present_id The value to wait for.
|
2025-05-09 16:04:39 +00:00
|
|
|
* @param timeout_in_ns Timeout in nanoseconds.
|
2025-06-06 16:41:12 +00:00
|
|
|
* @return VK_SUCCESS The present ID value is equal or higher than @p present_id
|
|
|
|
|
* and there were no errors during present.
|
|
|
|
|
* Any other error code to indicate a timeout or error state for the present.
|
2025-05-09 16:04:39 +00:00
|
|
|
*/
|
2025-06-06 16:41:12 +00:00
|
|
|
VkResult wait_for_present_id(uint64_t present_id, uint64_t timeout_in_ns);
|
2025-05-09 16:04:39 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get the last delivered present ID value.
|
|
|
|
|
* @return Present ID
|
|
|
|
|
*/
|
|
|
|
|
uint64_t get_last_delivered_present_id() const;
|
|
|
|
|
|
2024-11-28 06:36:17 +00:00
|
|
|
private:
|
|
|
|
|
/**
|
2025-04-01 09:27:18 +00:00
|
|
|
* @brief Most recently delivered present ID for this swapchain.
|
2024-11-28 06:36:17 +00:00
|
|
|
*/
|
2025-04-01 09:27:18 +00:00
|
|
|
std::atomic<uint64_t> m_last_delivered_id{ 0 };
|
2025-05-09 16:04:39 +00:00
|
|
|
|
|
|
|
|
/**
|
2025-06-06 16:41:12 +00:00
|
|
|
* @brief Current error state of the swapchain
|
|
|
|
|
*/
|
|
|
|
|
std::atomic<VkResult> m_error_state{ VK_SUCCESS };
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Conditional variable that notifies whenever present state has changed.
|
2025-05-09 16:04:39 +00:00
|
|
|
*/
|
2025-06-06 16:41:12 +00:00
|
|
|
std::condition_variable m_present_state_changed;
|
2025-05-09 16:04:39 +00:00
|
|
|
|
|
|
|
|
/**
|
2025-06-06 16:41:12 +00:00
|
|
|
* @brief Mutex for m_present_state_changed conditional variable.
|
2025-05-09 16:04:39 +00:00
|
|
|
*/
|
2025-09-05 15:06:38 +00:00
|
|
|
util::mutex m_mutex;
|
2024-11-28 06:36:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} /* namespace wsi */
|