From: Soeren Apel Date: Fri, 5 Jan 2018 19:48:20 +0000 (+0100) Subject: Supply the segment ID when adding samples to optimize trace painting X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=8c3397413149b87d2755494fe73186f27edab369;hp=8c3397413149b87d2755494fe73186f27edab369;p=pulseview.git Supply the segment ID when adding samples to optimize trace painting Use case is as follows: - Capture 20+ segments with ~500kS each - Afterwards, enable conversion for a channel Without this change, the converted logic will be repainted 20++ times because we are only told that new samples were added but not which segment. With this change, the logic trace is only painted when we see that samples were added to the segment we're showing. ---