Skip to main content

oxiphysics_gpu/shader_registry/
shadercompileoptions_traits.rs

1//! # ShaderCompileOptions - Trait Implementations
2//!
3//! This module contains trait implementations for `ShaderCompileOptions`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10use super::types::ShaderCompileOptions;
11
12impl Default for ShaderCompileOptions {
13    fn default() -> Self {
14        Self::new()
15    }
16}