[−][src]Struct vulkano::sync::Event
Used to block the GPU execution until an event on the CPU occurs.
Note that Vulkan implementations may have limits on how long a command buffer will wait for an event to be signaled, in order to avoid interfering with progress of other clients of the GPU. If the event isn't signaled within these limits, results are undefined and may include device loss.
Methods
impl Event
[src]
pub fn from_pool(device: Arc<Device>) -> Result<Event, OomError>
[src]
Takes an event from the vulkano-provided event pool.
If the pool is empty, a new event will be allocated.
Upon drop
, the event is put back into the pool.
For most applications, using the event pool should be preferred, in order to avoid creating new events every frame.
pub fn alloc(device: Arc<Device>) -> Result<Event, OomError>
[src]
Builds a new event.
pub fn signaled(&self) -> Result<bool, OomError>
[src]
Returns true if the event is signaled.
pub fn set_raw(&mut self) -> Result<(), OomError>
[src]
See the docs of set().
pub fn set(&mut self)
[src]
Changes the Event
to the signaled state.
If a command buffer is waiting on this event, it is then unblocked.
Panic
- Panics if the device or host ran out of memory.
pub fn reset_raw(&mut self) -> Result<(), OomError>
[src]
See the docs of reset().
pub fn reset(&mut self)
[src]
Trait Implementations
impl DeviceOwned for Event
[src]
impl VulkanObject for Event
[src]
type Object = Event
The type of the object.
const TYPE: DebugReportObjectTypeEXT
[src]
fn internal_object(&self) -> Event
[src]
impl Drop for Event
[src]
impl Debug for Event
[src]
Auto Trait Implementations
impl Send for Event
impl Unpin for Event
impl Sync for Event
impl UnwindSafe for Event
impl RefUnwindSafe for Event
Blanket Implementations
impl<T> DeviceOwned for T where
T: Deref,
<T as Deref>::Target: DeviceOwned,
[src]
T: Deref,
<T as Deref>::Target: DeviceOwned,
impl<T> Content for T
[src]
fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>
[src]
fn is_size_suitable(usize) -> bool
[src]
fn indiv_size() -> usize
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,