Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
哪个嵌入式 linux 的窗口系统支持硬件覆盖?
是否可以在Qt中为嵌入式 Linux 添加硬件覆盖支持?
Qt for Embedded Linux 使用 Qt 自己的窗口系统。为了渲染图形,使用了后端。其中一些后端支持硬件图形加速——例如用于基于 OMAP 的高端系统的 PowerVR 后端。在这里,您可能可以创建覆盖,但您必须使用 Qt 来完成,因为 Qt 完全拥有屏幕。
我使用的另一种选择(当实现机顶盒功能时,即 UI over video)是为 Qt 编写自定义后端,然后为其配备额外的钩子,您可以使用这些钩子来控制覆盖功能(即从您的 Qt 应用程序中规避 Qt)。但我想这种方法算作黑客!