mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
basically operational switch to canvas drawing coordinates, although text and waves don't work, and redraw areas are too small
This commit is contained in:
parent
a0c5de281a
commit
77f5f4c4bf
14 changed files with 160 additions and 149 deletions
|
|
@ -73,8 +73,10 @@ LineSet::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
|
|||
} else if (i->y > area.y0) {
|
||||
set_source_rgba (context, i->color);
|
||||
context->set_line_width (i->width);
|
||||
context->move_to (area.x0, i->y);
|
||||
context->line_to (area.x1, i->y);
|
||||
Duple p0 = item_to_window (Duple (area.x0, i->y));
|
||||
Duple p1 = item_to_window (Duple (area.x1, i->y));
|
||||
context->move_to (p0.x, p0.y);
|
||||
context->line_to (p1.x, p1.y);
|
||||
context->stroke ();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue