Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have very simple QT application using eglfs platform plugin, so it's works like a charm on very common SoC. QT renders output directly to framebuffer.

Because of some peculiarity, content of framebuffer can be erased outside of QT app. In this case I want to force top-level widget to redraw .

Unfortunately all available snippets not works for me:

 repaint();
 update();
 update(geometry());
 ...etc

Only one exception is sequential call of setWindowOpacity(0), and then setWindowOpacity(1.0); Perhaps it works, but I don't like such solution because overkill and unnecessary flickering.

So please suggest me how to properly force eglfs window to repaint immediately.

Will be grateful for any help.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...