From b3125756640ee9357c169e903ce49fc2c2b55ead Mon Sep 17 00:00:00 2001 From: Natasha England-Elbro Date: Mon, 5 Feb 2024 11:35:32 +0000 Subject: [PATCH] fix: Uniform not non-exhaustive --- citro3d/src/uniform.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/citro3d/src/uniform.rs b/citro3d/src/uniform.rs index aa886e2..b30ff70 100644 --- a/citro3d/src/uniform.rs +++ b/citro3d/src/uniform.rs @@ -23,6 +23,7 @@ impl From for i32 { } /// A uniform which may be bound as input to a shader program +#[non_exhaustive] pub enum Uniform { /// Single float uniform (`.fvec name`) Float(FVec4),