mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
impl DynFence for all fences
This commit is contained in:
parent
3faed2bf52
commit
1d19a205a5
@ -525,6 +525,8 @@ pub struct Fence {
|
||||
raw: d3d12::Fence,
|
||||
}
|
||||
|
||||
impl crate::DynFence for Fence {}
|
||||
|
||||
unsafe impl Send for Fence {}
|
||||
unsafe impl Sync for Fence {}
|
||||
|
||||
|
@ -46,6 +46,7 @@ impl crate::DynBindGroup for Resource {}
|
||||
impl crate::DynBuffer for Resource {}
|
||||
impl crate::DynCommandBuffer for Resource {}
|
||||
impl crate::DynComputePipeline for Resource {}
|
||||
impl crate::DynFence for Resource {}
|
||||
impl crate::DynPipelineLayout for Resource {}
|
||||
impl crate::DynQuerySet for Resource {}
|
||||
impl crate::DynRenderPipeline for Resource {}
|
||||
|
@ -693,6 +693,8 @@ pub struct Fence {
|
||||
pending: Vec<(crate::FenceValue, glow::Fence)>,
|
||||
}
|
||||
|
||||
impl crate::DynFence for Fence {}
|
||||
|
||||
#[cfg(any(
|
||||
not(target_arch = "wasm32"),
|
||||
all(
|
||||
|
@ -433,7 +433,7 @@ pub trait Api: Clone + fmt::Debug + Sized {
|
||||
/// before a lower-valued operation, then waiting for the fence to reach the
|
||||
/// lower value could return before the lower-valued operation has actually
|
||||
/// finished.
|
||||
type Fence: fmt::Debug + WasmNotSendSync;
|
||||
type Fence: DynFence + fmt::Debug;
|
||||
|
||||
type BindGroupLayout: fmt::Debug + WasmNotSendSync;
|
||||
type BindGroup: DynBindGroup;
|
||||
|
@ -811,6 +811,8 @@ pub struct Fence {
|
||||
pending_command_buffers: Vec<(crate::FenceValue, metal::CommandBuffer)>,
|
||||
}
|
||||
|
||||
impl crate::DynFence for Fence {}
|
||||
|
||||
unsafe impl Send for Fence {}
|
||||
unsafe impl Sync for Fence {}
|
||||
|
||||
|
@ -901,6 +901,8 @@ pub enum Fence {
|
||||
},
|
||||
}
|
||||
|
||||
impl crate::DynFence for Fence {}
|
||||
|
||||
impl Fence {
|
||||
/// Return the highest [`FenceValue`] among the signalled fences in `active`.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user