Skip to content

Commit

Permalink
Ensure all backends compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Hlusička committed Aug 2, 2020
1 parent d6df316 commit 99e6df7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/backend/dx11/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,7 @@ impl device::Device<Backend> for Device {
attachments: IA,
subpasses: IS,
_dependencies: ID,
_correlation_masks: Option<&[u32]>,
) -> Result<RenderPass, device::OutOfMemory>
where
IA: IntoIterator,
Expand Down
1 change: 1 addition & 0 deletions src/backend/dx12/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,7 @@ impl d::Device<B> for Device {
attachments: IA,
subpasses: IS,
dependencies: ID,
_correlation_masks: Option<&[u32]>,
) -> Result<r::RenderPass, d::OutOfMemory>
where
IA: IntoIterator,
Expand Down
1 change: 1 addition & 0 deletions src/backend/metal/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,7 @@ impl hal::device::Device<Backend> for Device {
attachments: IA,
subpasses: IS,
_dependencies: ID,
_correlation_masks: Option<&[u32]>,
) -> Result<n::RenderPass, OutOfMemory>
where
IA: IntoIterator,
Expand Down
1 change: 1 addition & 0 deletions src/backend/webgpu/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ impl hal::device::Device<Backend> for Device {
_attachments: IA,
_subpasses: IS,
_dependencies: ID,
_correlation_masks: Option<&[u32]>,
) -> Result<<Backend as hal::Backend>::RenderPass, OutOfMemory>
where
IA: IntoIterator,
Expand Down

0 comments on commit 99e6df7

Please sign in to comment.