![]() |
XII Release 0.1.0
|
Interface that defines methods to manipulate a fence object. More...
#include <Fence.h>
Public Member Functions | |
| XII_ALWAYS_INLINE const xiiGALFenceCreationDescription & | GetDescription () const |
| This returns the creation description for this object. | |
| virtual xiiUInt64 | GetCompletedValue ()=0 |
| This returns the last completed value signaled by the GPU. | |
| virtual void | Signal (xiiUInt64 uiValue)=0 |
| This sets the fence to the specified value. | |
| virtual void | Wait (xiiUInt64 uiValue)=0 |
| This waits until the fence reaches or exceeds the specified value on the host. | |
| void | ValidateFenceSignal (xiiUInt64 uiValue) |
| Validates fence signal. | |
| void | ValidateDeviceWaitForFence (xiiUInt64 uiValue) |
| Validates device wait for fence. | |
Public Member Functions inherited from xiiGALDeviceObject | |
| XII_ALWAYS_INLINE xiiSharedPtr< xiiGALDevice > | GetDevice () const |
| Returns the xiiGALDevice that created this resource. | |
Public Member Functions inherited from xiiGALObject | |
| XII_ALWAYS_INLINE xiiStringView | GetDebugName () const |
| Returns the debug name of this resource. | |
| void | SetDebugName (xiiStringView sDebugName) const |
| Sets the debug name for this resource. | |
Public Member Functions inherited from xiiReflectedClass | |
| virtual const xiiRTTI * | GetDynamicRTTI () const |
| bool | IsInstanceOf (const xiiRTTI *pType) const |
| Returns whether the type of this instance is of the given type or derived from it. | |
| template<typename T> | |
| XII_ALWAYS_INLINE bool | IsInstanceOf () const |
| Returns whether the type of this instance is of the given type or derived from it. | |
Public Member Functions inherited from xiiRefCounted | |
| virtual | ~xiiRefCounted ()=default |
| Adds a virtual destructor. | |
Public Member Functions inherited from xiiRefCountingImpl | |
| xiiRefCountingImpl ()=default | |
| Constructor. | |
| xiiRefCountingImpl (const xiiRefCountingImpl &rhs) | |
| void | operator= (const xiiRefCountingImpl &rhs) |
| xiiUInt32 | AddRef () const |
| Increments the reference counter. Returns the new reference count. | |
| xiiUInt32 | ReleaseRef () const |
| Decrements the reference counter. Returns the new reference count. | |
| bool | IsReferenced () const |
| Returns true if the reference count is greater than 0, false otherwise. | |
| xiiUInt32 | GetRefCount () const |
| Returns the current reference count. | |
Protected Member Functions | |
| xiiGALFence (xiiSharedPtr< xiiGALDevice > pDevice, const xiiGALFenceCreationDescription &creationDescription) | |
| virtual xiiResult | InitPlatform ()=0 |
| void | UpdateLastCompletedFenceValue (xiiUInt64 uiValue) |
Protected Member Functions inherited from xiiGALDeviceObject | |
| xiiGALDeviceObject (xiiSharedPtr< xiiGALDevice > pDevice) | |
Protected Member Functions inherited from xiiGALObject | |
| virtual XII_ALWAYS_INLINE void | SetDebugNamePlatform (xiiStringView sName) const |
Protected Attributes | |
| xiiGALFenceCreationDescription | m_Description |
| xiiAtomicIntegerU64 | m_LastCompletedFenceValue |
Protected Attributes inherited from xiiGALDeviceObject | |
| xiiSharedPtr< xiiGALDevice > | m_pDevice |
Friends | |
| class | xiiGALDevice |
| class | xiiMemoryUtils |
Additional Inherited Members | |
Static Public Member Functions inherited from xiiNoBase | |
| static const xiiRTTI * | GetStaticRTTI () |
Interface that defines methods to manipulate a fence object.
|
nodiscardpure virtual |
This returns the last completed value signaled by the GPU.
Implemented in xiiGALFenceVulkan.
|
pure virtual |
This sets the fence to the specified value.
| uiValue | - The new value the fence should reach. The value must be greater than the current value of the fence. |
Implemented in xiiGALFenceVulkan.
| void xiiGALFence::ValidateDeviceWaitForFence | ( | xiiUInt64 | uiValue | ) |
Validates device wait for fence.
| uiValue | - The enqueued value. |
| void xiiGALFence::ValidateFenceSignal | ( | xiiUInt64 | uiValue | ) |
Validates fence signal.
| uiValue | - The enqueued value. |
|
pure virtual |
This waits until the fence reaches or exceeds the specified value on the host.
| uiValue | - The value that the fence is waiting to reach. |
Implemented in xiiGALFenceVulkan.