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

Cocos2dx3.2 Crazy Tetris 由于遮罩引起的部分手机白屏

时间:2015-01-05 11:17:16      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:android游戏   cocos2dx   游戏编程   俄罗斯方块   手机游戏   

上一章是说明使用ClipplingNode制作遮罩,以显示不规则图形。但是这样一直到Android端,却在部分手机中发生了问题。

具体问题表现为:白屏,只有边界(右上角)有矩形色块。

这里其实是框架对Android手机引用OennGL时,设置上没有启用stencil buff的问题。

解决方案,在onCreateView构造函数中添加:

Cocos2dxGLSurfaceView glSurfaceView = new Cocos2dxGLSurfaceView(this);
glSurfaceView.setEGLConfigChooser(5, 6, 5, 0, 16, 8);


打开Cocos2dxGLSurfaceView的实现,发现其中并没有setEGLConfigChooser函数,而Cocos2dxGLSurfaceView继承自GLSurfaceView。查询了一下GLSurfaceView,发现有API

void setEGLConfigChooser(int redSize, int greenSize, int blueSize, int alphaSize, int depthSize, int stencilSize)
//Install a config chooser which will choose a config with at least the specified component sizes, and as close to the specified component sizes as possible.

这里可以看到,最后一个参数就是对stencil的设置,而在Cocos2dxActivity的内部初始化中,我们可以看到,其设置是:

if (isAndroidEmulator())
   this.mGLSurfaceView.setEGLConfigChooser(8 , 8, 8, 8, 16, 0);

关于制作游戏相关其他博客的目录,我放在利用Cocos2dx3.2制作重力版俄罗斯方块(Crazy Tetris)


Cocos2dx3.2 Crazy Tetris 由于遮罩引起的部分手机白屏

标签:android游戏   cocos2dx   游戏编程   俄罗斯方块   手机游戏   

原文地址:http://blog.csdn.net/m294955408/article/details/42419069

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