aboutsummaryrefslogtreecommitdiff
path: root/src/external/bytemuck.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/bytemuck.rs')
-rw-r--r--src/external/bytemuck.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/external/bytemuck.rs b/src/external/bytemuck.rs
new file mode 100644
index 0000000..5ab109e
--- /dev/null
+++ b/src/external/bytemuck.rs
@@ -0,0 +1,19 @@
+#[cfg(test)]
+mod tests {
+ use bytemuck::{Pod, Zeroable};
+
+ bitflags! {
+ #[derive(Pod, Zeroable, Clone, Copy)]
+ #[repr(transparent)]
+ struct Color: u32 {
+ const RED = 0x1;
+ const GREEN = 0x2;
+ const BLUE = 0x4;
+ }
+ }
+
+ #[test]
+ fn test_bytemuck() {
+ assert_eq!(0x1, bytemuck::cast::<Color, u32>(Color::RED));
+ }
+}