mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
The upcoming new event and query classes will follow this design. Reduces the number of files around these small classes.
125 lines
2.3 KiB
C++
125 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <vector>
|
|
|
|
#include "dxvk_include.h"
|
|
|
|
namespace dxvk {
|
|
|
|
/**
|
|
* \brief Event status
|
|
*/
|
|
enum class DxvkEventStatus {
|
|
Reset = 0,
|
|
Signaled = 1,
|
|
};
|
|
|
|
/**
|
|
* \brief Event
|
|
*
|
|
* A CPU-side fence that will be signaled after
|
|
* all previous Vulkan commands recorded to a
|
|
* command buffer have finished executing.
|
|
*/
|
|
class DxvkEvent : public RcObject {
|
|
|
|
public:
|
|
|
|
DxvkEvent();
|
|
~DxvkEvent();
|
|
|
|
/**
|
|
* \brief Resets the event
|
|
* \returns New revision ID
|
|
*/
|
|
uint32_t reset();
|
|
|
|
/**
|
|
* \brief Signals the event
|
|
* \param [in] revision The revision ID
|
|
*/
|
|
void signal(uint32_t revision);
|
|
|
|
/**
|
|
* \brief Queries event status
|
|
* \returns Current event status
|
|
*/
|
|
DxvkEventStatus getStatus() const;
|
|
|
|
/**
|
|
* \brief Waits for event to get signaled
|
|
*
|
|
* Blocks the calling thread until another
|
|
* thread calls \ref signal for the current
|
|
* revision of the event.
|
|
*/
|
|
void wait() const;
|
|
|
|
private:
|
|
|
|
struct Status {
|
|
DxvkEventStatus status = DxvkEventStatus::Signaled;
|
|
uint32_t revision = 0;
|
|
};
|
|
|
|
// Packed status and revision
|
|
std::atomic<uint64_t> m_packed;
|
|
|
|
static uint64_t pack(Status info);
|
|
static Status unpack(uint64_t packed);
|
|
|
|
};
|
|
|
|
|
|
/**
|
|
* \brief Event revision
|
|
*
|
|
* Stores the event object and the
|
|
* version ID for event operations.
|
|
*/
|
|
struct DxvkEventRevision {
|
|
Rc<DxvkEvent> event;
|
|
uint32_t revision;
|
|
};
|
|
|
|
|
|
/**
|
|
* \brief Event tracker
|
|
*/
|
|
class DxvkEventTracker {
|
|
|
|
public:
|
|
|
|
DxvkEventTracker();
|
|
~DxvkEventTracker();
|
|
|
|
/**
|
|
* \brief Adds an event to track
|
|
* \param [in] event The event revision
|
|
*/
|
|
void trackEvent(const DxvkEventRevision& event);
|
|
|
|
/**
|
|
* \brief Signals tracked events
|
|
*
|
|
* Retrieves query data from the query pools
|
|
* and writes it back to the query objects.
|
|
*/
|
|
void signalEvents();
|
|
|
|
/**
|
|
* \brief Resets event tracker
|
|
*
|
|
* Releases all events from the tracker.
|
|
* Call this after signaling the events.
|
|
*/
|
|
void reset();
|
|
|
|
private:
|
|
|
|
std::vector<DxvkEventRevision> m_events;
|
|
|
|
};
|
|
|
|
} |