From 44a945295bf9d81bba3bfd6e8e5ecf8c44aba39f Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Mon, 18 Oct 2021 18:25:57 +0200 Subject: [PATCH] fb_accel_sti: remove harmful blit() call this actually causes flickering by ensuring that big (background) fill operations are immediately committed to the screen Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/0eeb8191fbe4ec04fb881c3c983a923c0f4de456 Author: Stefan Seyfried Date: 2021-10-18 (Mon, 18 Oct 2021) ------------------ This commit was generated by Migit --- src/driver/fb_accel_sti.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/fb_accel_sti.cpp b/src/driver/fb_accel_sti.cpp index ba2c4808c..fdd995abd 100644 --- a/src/driver/fb_accel_sti.cpp +++ b/src/driver/fb_accel_sti.cpp @@ -275,7 +275,7 @@ void CFbAccelSTi::paintRect(const int x, const int y, const int dx, const int dy OpenThreads::ScopedLock m_lock(mutex); if (ioctl(fd, STMFBIO_BLT, &bltData ) < 0) fprintf(stderr, "blitRect FBIO_BLIT: %m x:%d y:%d w:%d h:%d s:%d\n", xx,yy,width,height,stride); - blit(); + //blit(); } /* width / height => source surface *