码迷,mamicode.com
首页 > 移动开发 > 详细

android 玩愤怒小鸟等全屏游戏时TP失效

时间:2014-09-04 09:47:07      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:android   sp   on   c   bs   r   信息   tt   游戏   

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); 
     }     
}

android 玩愤怒小鸟等全屏游戏时TP失效

标签:android   sp   on   c   bs   r   信息   tt   游戏   

原文地址:http://blog.csdn.net/sergeycao/article/details/39047611

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!