pub struct HostRenderArgs {Show 15 fields
pub positions: Vec<f32>,
pub scales: Vec<f32>,
pub rotations: Vec<f32>,
pub opacities: Vec<f32>,
pub colors: Vec<f32>,
pub sh_coeffs: Vec<f32>,
pub meta: Vec<f32>,
pub width: u32,
pub height: u32,
pub tile_size: u32,
pub radius_scale: f32,
pub alpha_cutoff: f32,
pub max_splat_steps: u32,
pub transmittance_threshold: f32,
pub max_list_entries: u32,
}Expand description
Host-buffer forward splat.
Fields§
§positions: Vec<f32>§scales: Vec<f32>§rotations: Vec<f32>§opacities: Vec<f32>§colors: Vec<f32>§sh_coeffs: Vec<f32>§meta: Vec<f32>§width: u32§height: u32§tile_size: u32§radius_scale: f32§alpha_cutoff: f32§max_splat_steps: u32§transmittance_threshold: f32§max_list_entries: u32Auto Trait Implementations§
impl Freeze for HostRenderArgs
impl RefUnwindSafe for HostRenderArgs
impl Send for HostRenderArgs
impl Sync for HostRenderArgs
impl Unpin for HostRenderArgs
impl UnsafeUnpin for HostRenderArgs
impl UnwindSafe for HostRenderArgs
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more