mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
never use threaded waveview rendering for Tracks
This commit is contained in:
parent
0bbe7ad96b
commit
a38e67d55b
1 changed files with 8 additions and 0 deletions
|
|
@ -92,7 +92,11 @@ WaveView::WaveView (Canvas* c, boost::shared_ptr<ARDOUR::AudioRegion> region)
|
|||
, _start_shift (0.0)
|
||||
, _region_start (region->start())
|
||||
, get_image_in_thread (false)
|
||||
#ifdef USE_TRACKS_CODE_FEATURES
|
||||
, always_get_image_in_thread (true)
|
||||
#else
|
||||
, always_get_image_in_thread (false)
|
||||
#endif
|
||||
, rendered (false)
|
||||
{
|
||||
if (!images) {
|
||||
|
|
@ -125,7 +129,11 @@ WaveView::WaveView (Item* parent, boost::shared_ptr<ARDOUR::AudioRegion> region)
|
|||
, _start_shift (0.0)
|
||||
, _region_start (region->start())
|
||||
, get_image_in_thread (false)
|
||||
#ifdef USE_TRACKS_CODE_FEATURES
|
||||
, always_get_image_in_thread (true)
|
||||
#else
|
||||
, always_get_image_in_thread (false)
|
||||
#endif
|
||||
, rendered (false)
|
||||
{
|
||||
if (!images) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue