views:

97

answers:

1

Which windowing system for embedded linux supports hardware overlay?

Is it possible to add hardware overlay support in Qt for embedded Linux?

+1  A: 

Qt for Embedded Linux uses Qt's own windowing system. For rendering the graphics, back-ends are used. Some of these back-ends support hardware graphics acceleration - for instance the PowerVR back-end used for high-end OMAP-based systems. Here, you can probably create overlays, but you will have to do it using Qt, as Qt takes full ownership of the screen.

Another alternative that I've used (when implemented a set-top-box functionality, i.e. UI over video) is to write a custom back-end for Qt and then equip it with additional hooks that you can use to control the overlay functionality (i.e. circumvent Qt from within your Qt application). But I guess that approach counts as a hack!

e8johan
Thank you very much. Let me tell you that I read first four chapters of your book. It is the best book on QT I ever read. You write book as proper tutorial where things are going like stream.
Sunny