pub struct VertexFetchStatistics {
pub bytes_fetched: u32,
pub overfetch: f32,
}
Fields§
§bytes_fetched: u32
§overfetch: f32
Fetched bytes / vertex buffer size
Best case is 1.0 (each byte is fetched once)
Trait Implementations§
Source§impl Default for VertexFetchStatistics
impl Default for VertexFetchStatistics
Source§fn default() -> VertexFetchStatistics
fn default() -> VertexFetchStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VertexFetchStatistics
impl RefUnwindSafe for VertexFetchStatistics
impl Send for VertexFetchStatistics
impl Sync for VertexFetchStatistics
impl Unpin for VertexFetchStatistics
impl UnwindSafe for VertexFetchStatistics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more