1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-22 04:37:46 +00:00

Derive Clone, Copy for ShaderStage

This commit is contained in:
Joshua Goins 2024-05-18 11:53:13 -04:00
parent d700f81af9
commit 0fbb604c73

View file

@ -8,7 +8,7 @@ use binrw::binread;
use binrw::BinRead; use binrw::BinRead;
#[binread] #[binread]
#[derive(Debug)] #[derive(Debug, Clone, Copy)]
#[repr(C)] #[repr(C)]
pub enum ShaderStage { pub enum ShaderStage {
#[br(magic = 0u8)] #[br(magic = 0u8)]