[−][src]Struct azul_webrender_api::DisplayListBuilder
Fields
data: Vec<u8>
pipeline_id: PipelineId
Implementations
impl DisplayListBuilder
[src]
pub fn new(pipeline_id: PipelineId, content_size: LayoutSize) -> Self
[src]
pub fn with_capacity(
pipeline_id: PipelineId,
content_size: LayoutSize,
capacity: usize
) -> Self
[src]
pipeline_id: PipelineId,
content_size: LayoutSize,
capacity: usize
) -> Self
pub fn content_size(&self) -> LayoutSize
[src]
Return the content size for this display list
pub fn save(&mut self)
[src]
Saves the current display list state, so it may be restore()
'd.
Conditions:
- Doesn't support popping clips that were pushed before the save.
- Doesn't support nested saves.
- Must call
clear_save()
if the restore becomes unnecessary.
pub fn restore(&mut self)
[src]
Restores the state of the builder to when save()
was last called.
pub fn clear_save(&mut self)
[src]
Discards the builder's save (indicating the attempted operation was successful).
pub fn emit_display_list<W>(
&mut self,
indent: usize,
range: Range<Option<usize>>,
sink: W
) -> usize where
W: Write,
[src]
&mut self,
indent: usize,
range: Range<Option<usize>>,
sink: W
) -> usize where
W: Write,
Emits a debug representation of display items in the list, for debugging purposes. If the range's start parameter is specified, only display items starting at that index (inclusive) will be printed. If the range's end parameter is specified, only display items before that index (exclusive) will be printed. Calling this function with end <= start is allowed but is just a waste of CPU cycles. The function emits the debug representation of the selected display items, one per line, with the given indent, to the provided sink object. The return value is the total number of items in the display list, which allows the caller to subsequently invoke this function to only dump the newly-added items.
pub fn dump_serialized_display_list(&mut self)
[src]
Print the display items in the list to stdout.
pub fn push_item_to_section(
&mut self,
item: &DisplayItem,
section: DisplayListSection
)
[src]
&mut self,
item: &DisplayItem,
section: DisplayListSection
)
pub fn push_item(&mut self, item: &DisplayItem)
[src]
Add an item to the display list.
NOTE: It is usually preferable to use the specialized methods to push display items. Pushing unexpected or invalid items here may result in WebRender panicking or behaving in unexpected ways.
pub fn push_iter<I>(&mut self, iter: I) where
I: IntoIterator,
I::IntoIter: ExactSizeIterator,
I::Item: Poke,
[src]
I: IntoIterator,
I::IntoIter: ExactSizeIterator,
I::Item: Poke,
Push items from an iterator to the display list.
NOTE: Pushing unexpected or invalid items to the display list may result in panic and confusion.
pub fn push_rect(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
color: ColorF
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
color: ColorF
)
pub fn push_rect_with_animation(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
color: PropertyBinding<ColorF>
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
color: PropertyBinding<ColorF>
)
pub fn push_clear_rect(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect
)
pub fn push_hit_test(&mut self, common: &CommonItemProperties)
[src]
pub fn push_line(
&mut self,
common: &CommonItemProperties,
area: &LayoutRect,
wavy_line_thickness: f32,
orientation: LineOrientation,
color: &ColorF,
style: LineStyle
)
[src]
&mut self,
common: &CommonItemProperties,
area: &LayoutRect,
wavy_line_thickness: f32,
orientation: LineOrientation,
color: &ColorF,
style: LineStyle
)
pub fn push_image(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
image_rendering: ImageRendering,
alpha_type: AlphaType,
key: ImageKey,
color: ColorF
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
image_rendering: ImageRendering,
alpha_type: AlphaType,
key: ImageKey,
color: ColorF
)
pub fn push_repeating_image(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
stretch_size: LayoutSize,
tile_spacing: LayoutSize,
image_rendering: ImageRendering,
alpha_type: AlphaType,
key: ImageKey,
color: ColorF
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
stretch_size: LayoutSize,
tile_spacing: LayoutSize,
image_rendering: ImageRendering,
alpha_type: AlphaType,
key: ImageKey,
color: ColorF
)
pub fn push_yuv_image(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
yuv_data: YuvData,
color_depth: ColorDepth,
color_space: YuvColorSpace,
color_range: ColorRange,
image_rendering: ImageRendering
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
yuv_data: YuvData,
color_depth: ColorDepth,
color_space: YuvColorSpace,
color_range: ColorRange,
image_rendering: ImageRendering
)
Push a yuv image. All planar data in yuv image should use the same buffer type.
pub fn push_text(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
glyphs: &[GlyphInstance],
font_key: FontInstanceKey,
color: ColorF,
glyph_options: Option<GlyphOptions>
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
glyphs: &[GlyphInstance],
font_key: FontInstanceKey,
color: ColorF,
glyph_options: Option<GlyphOptions>
)
pub fn create_gradient(
&mut self,
start_point: LayoutPoint,
end_point: LayoutPoint,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> Gradient
[src]
&mut self,
start_point: LayoutPoint,
end_point: LayoutPoint,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> Gradient
NOTE: gradients must be pushed in the order they're created because create_gradient stores the stops in anticipation.
pub fn create_radial_gradient(
&mut self,
center: LayoutPoint,
radius: LayoutSize,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> RadialGradient
[src]
&mut self,
center: LayoutPoint,
radius: LayoutSize,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> RadialGradient
NOTE: gradients must be pushed in the order they're created because create_gradient stores the stops in anticipation.
pub fn create_conic_gradient(
&mut self,
center: LayoutPoint,
angle: f32,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> ConicGradient
[src]
&mut self,
center: LayoutPoint,
angle: f32,
stops: Vec<GradientStop>,
extend_mode: ExtendMode
) -> ConicGradient
NOTE: gradients must be pushed in the order they're created because create_gradient stores the stops in anticipation.
pub fn push_border(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
widths: LayoutSideOffsets,
details: BorderDetails
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
widths: LayoutSideOffsets,
details: BorderDetails
)
pub fn push_box_shadow(
&mut self,
common: &CommonItemProperties,
box_bounds: LayoutRect,
offset: LayoutVector2D,
color: ColorF,
blur_radius: f32,
spread_radius: f32,
border_radius: BorderRadius,
clip_mode: BoxShadowClipMode
)
[src]
&mut self,
common: &CommonItemProperties,
box_bounds: LayoutRect,
offset: LayoutVector2D,
color: ColorF,
blur_radius: f32,
spread_radius: f32,
border_radius: BorderRadius,
clip_mode: BoxShadowClipMode
)
pub fn push_gradient(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: Gradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: Gradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
Pushes a linear gradient to be displayed.
The gradient itself is described in the
gradient
parameter. It is drawn on
a "tile" with the dimensions from tile_size
.
These tiles are now repeated to the right and
to the bottom infinitely. If tile_spacing
is not zero spacers with the given dimensions
are inserted between the tiles as seams.
The origin of the tiles is given in layout.rect.origin
.
If the gradient should only be displayed once limit
the layout.rect.size
to a single tile.
The gradient is only visible within the local clip.
pub fn push_radial_gradient(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: RadialGradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: RadialGradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
Pushes a radial gradient to be displayed.
See push_gradient
for explanation.
pub fn push_conic_gradient(
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: ConicGradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
[src]
&mut self,
common: &CommonItemProperties,
bounds: LayoutRect,
gradient: ConicGradient,
tile_size: LayoutSize,
tile_spacing: LayoutSize
)
Pushes a conic gradient to be displayed.
See push_gradient
for explanation.
pub fn push_reference_frame(
&mut self,
origin: LayoutPoint,
parent_spatial_id: SpatialId,
transform_style: TransformStyle,
transform: PropertyBinding<LayoutTransform>,
kind: ReferenceFrameKind
) -> SpatialId
[src]
&mut self,
origin: LayoutPoint,
parent_spatial_id: SpatialId,
transform_style: TransformStyle,
transform: PropertyBinding<LayoutTransform>,
kind: ReferenceFrameKind
) -> SpatialId
pub fn pop_reference_frame(&mut self)
[src]
pub fn push_stacking_context(
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags,
clip_id: Option<ClipId>,
transform_style: TransformStyle,
mix_blend_mode: MixBlendMode,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive],
raster_space: RasterSpace,
cache_tiles: bool,
is_backdrop_root: bool
)
[src]
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags,
clip_id: Option<ClipId>,
transform_style: TransformStyle,
mix_blend_mode: MixBlendMode,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive],
raster_space: RasterSpace,
cache_tiles: bool,
is_backdrop_root: bool
)
pub fn push_simple_stacking_context(
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags
)
[src]
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags
)
Helper for examples/ code.
pub fn push_simple_stacking_context_with_filters(
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
[src]
&mut self,
origin: LayoutPoint,
spatial_id: SpatialId,
prim_flags: PrimitiveFlags,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
Helper for examples/ code.
pub fn pop_stacking_context(&mut self)
[src]
pub fn push_stops(&mut self, stops: &[GradientStop])
[src]
pub fn push_backdrop_filter(
&mut self,
common: &CommonItemProperties,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
[src]
&mut self,
common: &CommonItemProperties,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
pub fn push_filters(
&mut self,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
[src]
&mut self,
filters: &[FilterOp],
filter_datas: &[FilterData],
filter_primitives: &[FilterPrimitive]
)
pub fn define_scroll_frame<I>(
&mut self,
parent_space_and_clip: &SpaceAndClipInfo,
external_id: Option<ExternalScrollId>,
content_rect: LayoutRect,
clip_rect: LayoutRect,
complex_clips: I,
image_mask: Option<ImageMask>,
scroll_sensitivity: ScrollSensitivity,
external_scroll_offset: LayoutVector2D
) -> SpaceAndClipInfo where
I: IntoIterator<Item = ComplexClipRegion>,
I::IntoIter: ExactSizeIterator + Clone,
[src]
&mut self,
parent_space_and_clip: &SpaceAndClipInfo,
external_id: Option<ExternalScrollId>,
content_rect: LayoutRect,
clip_rect: LayoutRect,
complex_clips: I,
image_mask: Option<ImageMask>,
scroll_sensitivity: ScrollSensitivity,
external_scroll_offset: LayoutVector2D
) -> SpaceAndClipInfo where
I: IntoIterator<Item = ComplexClipRegion>,
I::IntoIter: ExactSizeIterator + Clone,
pub fn define_clip_chain<I>(
&mut self,
parent: Option<ClipChainId>,
clips: I
) -> ClipChainId where
I: IntoIterator<Item = ClipId>,
I::IntoIter: ExactSizeIterator + Clone,
[src]
&mut self,
parent: Option<ClipChainId>,
clips: I
) -> ClipChainId where
I: IntoIterator<Item = ClipId>,
I::IntoIter: ExactSizeIterator + Clone,
pub fn define_clip<I>(
&mut self,
parent_space_and_clip: &SpaceAndClipInfo,
clip_rect: LayoutRect,
complex_clips: I,
image_mask: Option<ImageMask>
) -> ClipId where
I: IntoIterator<Item = ComplexClipRegion>,
I::IntoIter: ExactSizeIterator + Clone,
[src]
&mut self,
parent_space_and_clip: &SpaceAndClipInfo,
clip_rect: LayoutRect,
complex_clips: I,
image_mask: Option<ImageMask>
) -> ClipId where
I: IntoIterator<Item = ComplexClipRegion>,
I::IntoIter: ExactSizeIterator + Clone,
pub fn define_sticky_frame(
&mut self,
parent_spatial_id: SpatialId,
frame_rect: LayoutRect,
margins: SideOffsets2D<Option<f32>, LayoutPixel>,
vertical_offset_bounds: StickyOffsetBounds,
horizontal_offset_bounds: StickyOffsetBounds,
previously_applied_offset: LayoutVector2D
) -> SpatialId
[src]
&mut self,
parent_spatial_id: SpatialId,
frame_rect: LayoutRect,
margins: SideOffsets2D<Option<f32>, LayoutPixel>,
vertical_offset_bounds: StickyOffsetBounds,
horizontal_offset_bounds: StickyOffsetBounds,
previously_applied_offset: LayoutVector2D
) -> SpatialId
pub fn push_iframe(
&mut self,
bounds: LayoutRect,
clip_rect: LayoutRect,
space_and_clip: &SpaceAndClipInfo,
pipeline_id: PipelineId,
ignore_missing_pipeline: bool
)
[src]
&mut self,
bounds: LayoutRect,
clip_rect: LayoutRect,
space_and_clip: &SpaceAndClipInfo,
pipeline_id: PipelineId,
ignore_missing_pipeline: bool
)
pub fn push_shadow(
&mut self,
space_and_clip: &SpaceAndClipInfo,
shadow: Shadow,
should_inflate: bool
)
[src]
&mut self,
space_and_clip: &SpaceAndClipInfo,
shadow: Shadow,
should_inflate: bool
)
pub fn pop_all_shadows(&mut self)
[src]
pub fn start_item_group(&mut self)
[src]
pub fn finish_item_group(&mut self, key: ItemKey) -> bool
[src]
pub fn cancel_item_group(&mut self)
[src]
pub fn push_reuse_items(&mut self, key: ItemKey)
[src]
pub fn set_cache_size(&mut self, cache_size: usize)
[src]
pub fn finalize(self) -> (PipelineId, LayoutSize, BuiltDisplayList)
[src]
Trait Implementations
impl Clone for DisplayListBuilder
[src]
fn clone(&self) -> DisplayListBuilder
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl RefUnwindSafe for DisplayListBuilder
impl Send for DisplayListBuilder
impl Sync for DisplayListBuilder
impl Unpin for DisplayListBuilder
impl UnwindSafe for DisplayListBuilder
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,