Full rewrite
- Removed csflow, as its basically not getting used when high optimization is needed - Fully rewrote radarflow dma logic. - Speed increase from 20hz to over 130 hz over pcileech, thanks to scatter reads and improved caching - Removed docs, because those were for csflow, which is now removed
This commit is contained in:
3
src/structs/mod.rs
Executable file
3
src/structs/mod.rs
Executable file
@@ -0,0 +1,3 @@
|
||||
mod vec3;
|
||||
|
||||
pub use vec3::Vec3;
|
||||
11
src/structs/vec3.rs
Executable file
11
src/structs/vec3.rs
Executable file
@@ -0,0 +1,11 @@
|
||||
use serde::{Serialize, Deserialize};
|
||||
|
||||
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
|
||||
#[repr(C)]
|
||||
pub struct Vec3 {
|
||||
pub x: f32,
|
||||
pub y: f32,
|
||||
pub z: f32
|
||||
}
|
||||
|
||||
unsafe impl dataview::Pod for Vec3 {}
|
||||
Reference in New Issue
Block a user