Implement Clone for ShaderModule (#6937)

This commit is contained in:
Alphyr
2025-01-17 16:39:47 +01:00
committed by GitHub
parent bdef8c0407
commit aa94634524

View File

@@ -10,7 +10,7 @@ use crate::*;
/// of a pipeline.
///
/// Corresponds to [WebGPU `GPUShaderModule`](https://gpuweb.github.io/gpuweb/#shader-module).
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct ShaderModule {
pub(crate) inner: dispatch::DispatchShaderModule,
}