我正在从事iMX51项目。实时操作系统为WINCE 6.0 r3。我正在使用iMX51飞思卡尔评估工具包。
我们实际上希望加速GDI并实现硬件游标.
我不清楚以下几点:
Note:When I reboot the hardware after building my workspace, I see the mouse cursor located at the centre of the window. Can anyone guide me what type of cursor is this? Is this a hardware cursor or software cursor...? And if this is a hardware cursor then:----
参考:
请指导我正确的步骤,如何实现我的目标。
发布于 2010-03-25 10:15:37
光标只是鼠标指针。拥有一个硬件光标意味着图形硬件可以将一个小的移动图像(通常称为"雪碧")“覆盖”在常规图形的基础上。
实现软件游标意味着将后台“在指针下面”存储,并在指针移动时重写它。这可能很棘手,特别是当底层图形正在发生变化时。
更新:快速浏览参考手册,您需要阅读显示处理器(DP)模块。寄存器DP_COC_SYNC似乎与设置光标模式有关,而DP_CUR_POS_SYNC则在屏幕上设置其位置。
https://stackoverflow.com/questions/2514584
复制相似问题