Home
last modified time | relevance | path

Searched refs:updrect (Results 1 – 3 of 3) sorted by relevance

/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Daudio_display.cpp794 wxRect updrect = region.GetRect(); in OnPaint() local
796 redraw_scrollbar |= scrollbar->GetBounds().Intersects(updrect); in OnPaint()
797 redraw_timeline |= timeline->GetBounds().Intersects(updrect); in OnPaint()
799 if (audio_bounds.Intersects(updrect)) in OnPaint()
802 std::max(0, TimeFromRelativeX(updrect.x - foot_size)), in OnPaint()
803 std::max(0, TimeFromRelativeX(updrect.x + updrect.width + foot_size))); in OnPaint()
805 PaintAudio(dc, updtime, updrect); in OnPaint()
820 void AudioDisplay::PaintAudio(wxDC &dc, TimeRange updtime, wxRect updrect) in PaintAudio() argument
831 int range_x1 = std::max(updrect.x, RelativeXFromTime(pt->first)); in PaintAudio()
832 int range_x2 = (++pt == pe) ? updrect.x + updrect.width : RelativeXFromTime(pt->first); in PaintAudio()
H A Dbase_grid.cpp270 wxRect updrect = region.GetRect(); in OnPaint() local
274 if (width && updrect.x < x + width && updrect.x + updrect.width > x) { in OnPaint()
H A Daudio_display.h190 void PaintAudio(wxDC &dc, TimeRange updtime, wxRect updrect);