mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Make canvas send their data themselves to other canvas
This commit is contained in:
parent
2086d216dd
commit
f8c3fe1076
7 changed files with 43 additions and 26 deletions
|
@ -79,6 +79,8 @@ pub enum Canvas2dMsg {
|
|||
ArcTo(Point2D<f32>, Point2D<f32>, f32),
|
||||
DrawImage(Vec<u8>, Size2D<f64>, Rect<f64>, Rect<f64>, bool),
|
||||
DrawImageSelf(Size2D<f64>, Rect<f64>, Rect<f64>, bool),
|
||||
DrawImageInOther(
|
||||
IpcSender<CanvasMsg>, Size2D<f64>, Rect<f64>, Rect<f64>, bool, IpcSender<()>),
|
||||
BeginPath,
|
||||
BezierCurveTo(Point2D<f32>, Point2D<f32>, Point2D<f32>),
|
||||
ClearRect(Rect<f32>),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue