玩愤怒小鸟等全屏游戏时TP失效
时间:10-02
整理:3721RD
点击:
[DESCRIPTION]
玩全屏游戏例如愤怒的小鸟,地铁跑酷时,触屏不能正常工作。
[SOLUTION]
1.tp driver的tpd_down()和tpd_up()函数中不需要上报id号,上层会自动进行匹配;
2.tpd_up()函数中只需要上报BTN_touch和mt_sync信息,其他信息不用上报,如下:
static void tpd_up(int x, int y,int *count)
{
input_report_key(tpd->dev, BTN_TOUCH, 0);
//printk("U[%4d %4d %4d] ", x, y, 0);
input_mt_sync(tpd->dev);
TPD_EM_PRINT(x, y, x, y, 0, 0);
if (FACTORY_BOOT == get_boot_mode()|| RECOVERY_BOOT == get_boot_mode())
{
tpd_button(x, y, 0);
}
}
不做软件的漂过……