How does Qt embedded work with Linux framebuffer driver?
I think directly write to /dev/fb0 will cause image flickering. Use double buffer will solve flickering problem, but, what is the strategy of copying data from Qt buffer to framebuffer memory? by a time interval then copy whole buffer to /dev/fb0 or something else? and, for the data is huge, how is it be copied? by a DMA enabled copy_from_user or some way else?