[−][src]Trait piet::RenderContext
The main trait for rendering graphics.
This trait provides an API for drawing 2D graphics. In basic usage, it wraps a surface of some kind, so that drawing commands paint onto the surface. It can also be a recording context, creating a display list for playback later.
The intent of the design is to be general so that any number of back-ends can implement this trait.
Code that draws graphics will in general take &mut impl RenderContext
.
Associated Types
type Brush: Clone
The type of a "brush".
Represents solid colors and gradients.
type Text: Text<TextLayout = Self::TextLayout>
An associated factory for creating text layouts and related resources.
type TextLayout: TextLayout
Required methods
fn status(&mut self) -> Result<(), Error>
Report an internal error.
Drawing operations may cause internal errors, which may also occur asynchronously after the drawing command was issued. This method reports any such error that has been detected.
fn solid_brush(&mut self, color: Color) -> Self::Brush
Create a new brush resource.
TODO: figure out how to document lifetime and rebuilding requirements. Should that be the responsibility of the client, or should the back-end take responsiblity? We could have a cache that is flushed when the Direct2D render target is rebuilt. Solid brushes are super lightweight, but other potentially retained objects will be heavier.
fn clear(&mut self, color: Color)
Clear the canvas with the given color.
Note: only opaque colors are meaningful.
fn stroke(
&mut self,
shape: impl Shape,
brush: &impl IntoBrush<Self>,
width: f64
)
&mut self,
shape: impl Shape,
brush: &impl IntoBrush<Self>,
width: f64
)
Stroke a shape.
fn stroke_styled(
&mut self,
shape: impl Shape,
brush: &impl IntoBrush<Self>,
width: f64,
style: &StrokeStyle
)
&mut self,
shape: impl Shape,
brush: &impl IntoBrush<Self>,
width: f64,
style: &StrokeStyle
)
Stroke a shape, with styled strokes.
fn fill(&mut self, shape: impl Shape, brush: &impl IntoBrush<Self>)
Fill a shape, using non-zero fill rule.
fn fill_even_odd(&mut self, shape: impl Shape, brush: &impl IntoBrush<Self>)
Fill a shape, using even-odd fill rule
fn clip(&mut self, shape: impl Shape)
Clip to a shape.
All subsequent drawing operations up to the next restore
are clipped by the shape.
fn text(&mut self) -> &mut Self::Text
fn draw_text(
&mut self,
layout: &Self::TextLayout,
pos: impl Into<Point>,
brush: &impl IntoBrush<Self>
)
&mut self,
layout: &Self::TextLayout,
pos: impl Into<Point>,
brush: &impl IntoBrush<Self>
)
Draw a text layout.
The pos
parameter specifies the baseline of the left starting place of
the text. Note: this is true even if the text is right-to-left.
fn save(&mut self) -> Result<(), Error>
Save the context state.
Pushes the current context state onto a stack, to be popped by
restore
.
Prefer with_save
if possible, as that statically
enforces balance of save/restore pairs.
The context state currently consists of a clip region and an affine transform, but is expected to grow in the near future.
fn restore(&mut self) -> Result<(), Error>
Restore the context state.
Pop a context state that was pushed by save
. See
that method for details.
fn finish(&mut self) -> Result<(), Error>
Finish any pending operations.
This will generally be called by a shell after all user drawing operations but before presenting. Not all back-ends will handle this the same way.
fn transform(&mut self, transform: Affine)
Apply a transform.
Apply an affine transformation. The transformation remains in effect
until a restore
operation.