mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Redraw MIDI monitor only as needed
This reduces CPU overhead and constant stream of cross thread signals at session's block-size.
This commit is contained in:
parent
36a2fb1ba8
commit
0b056c6364
1 changed files with 6 additions and 1 deletions
|
|
@ -61,6 +61,7 @@ end
|
|||
function dsp_runmap (bufs, in_map, out_map, n_samples, offset)
|
||||
local pos = self:shmem():atomic_get_int(0)
|
||||
local buffer = self:shmem():to_int(1):array()
|
||||
local newdata = false
|
||||
|
||||
-- passthrough all data
|
||||
ARDOUR.DSP.process_map (bufs, n_out, in_map, out_map, n_samples, offset)
|
||||
|
|
@ -83,13 +84,17 @@ function dsp_runmap (bufs, in_map, out_map, n_samples, offset)
|
|||
for j = e:size()+1, evlen do
|
||||
buffer[(pos-1)*evlen + j] = 0
|
||||
end
|
||||
newdata = true
|
||||
end
|
||||
end
|
||||
|
||||
self:shmem():atomic_set_int(0, pos)
|
||||
|
||||
if newdata then
|
||||
print ("new data", pos)
|
||||
self:queue_draw ()
|
||||
end
|
||||
end
|
||||
|
||||
local txt = nil -- a pango context
|
||||
local cursize = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue