pub struct RendererVAOs {Show 18 fields
prim_vao: VAO,
blur_vao: VAO,
clip_rect_vao: VAO,
clip_box_shadow_vao: VAO,
border_vao: VAO,
line_vao: VAO,
scale_vao: VAO,
fast_linear_gradient_vao: VAO,
linear_gradient_vao: VAO,
radial_gradient_vao: VAO,
conic_gradient_vao: VAO,
resolve_vao: VAO,
svg_filter_vao: VAO,
svg_filter_node_vao: VAO,
composite_vao: VAO,
clear_vao: VAO,
copy_vao: VAO,
mask_vao: VAO,
}Fields§
§prim_vao: VAO§blur_vao: VAO§clip_rect_vao: VAO§clip_box_shadow_vao: VAO§border_vao: VAO§line_vao: VAO§scale_vao: VAO§fast_linear_gradient_vao: VAO§linear_gradient_vao: VAO§radial_gradient_vao: VAO§conic_gradient_vao: VAO§resolve_vao: VAO§svg_filter_vao: VAO§svg_filter_node_vao: VAO§composite_vao: VAO§clear_vao: VAO§copy_vao: VAO§mask_vao: VAOImplementations§
Trait Implementations§
Source§impl Index<VertexArrayKind> for RendererVAOs
impl Index<VertexArrayKind> for RendererVAOs
Auto Trait Implementations§
impl Freeze for RendererVAOs
impl RefUnwindSafe for RendererVAOs
impl Send for RendererVAOs
impl Sync for RendererVAOs
impl Unpin for RendererVAOs
impl UnwindSafe for RendererVAOs
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