adds eq to DepthBiasState and DepthStencilState (#3096)

This commit is contained in:
Andreas Reich 2022-10-12 20:28:44 +02:00 committed by GitHub
parent 0951b033a7
commit aed3b1ae59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3188,12 +3188,14 @@ impl PartialEq for DepthBiasState {
}
}
impl Eq for DepthBiasState {}
/// Describes the depth/stencil state in a render pipeline.
///
/// Corresponds to [WebGPU `GPUDepthStencilState`](
/// https://gpuweb.github.io/gpuweb/#dictdef-gpudepthstencilstate).
#[repr(C)]
#[derive(Clone, Debug, Hash, PartialEq)]
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
#[cfg_attr(feature = "trace", derive(Serialize))]
#[cfg_attr(feature = "replay", derive(Deserialize))]
pub struct DepthStencilState {