pub trait Queue<A: Api>: WasmNotSendSync {
// Required methods
unsafe fn submit(
&self,
command_buffers: &[&A::CommandBuffer],
signal_fence: Option<(&mut A::Fence, FenceValue)>
) -> Result<(), DeviceError>;
unsafe fn present(
&self,
surface: &A::Surface,
texture: A::SurfaceTexture
) -> Result<(), SurfaceError>;
unsafe fn get_timestamp_period(&self) -> f32;
}
Required Methods§
sourceunsafe fn submit(
&self,
command_buffers: &[&A::CommandBuffer],
signal_fence: Option<(&mut A::Fence, FenceValue)>
) -> Result<(), DeviceError>
unsafe fn submit( &self, command_buffers: &[&A::CommandBuffer], signal_fence: Option<(&mut A::Fence, FenceValue)> ) -> Result<(), DeviceError>
Submits the command buffers for execution on GPU.
Valid usage:
- all of the command buffers were created from command pools that are associated with this queue.
- all of the command buffers had
CommadBuffer::finish()
called.