Android模拟器下的NDK运行opengl的问题

在AndroidNDK中的samples\hello-gl2下的实例,在Android的模拟器下运行,如果不该任何代码,会出现错误:
ERROR/AndroidRuntime(258): java.lang.IllegalArgumentException: No configs match configSpec

代码错误行数在:

chooseConfig方法的如下行:

if (numConfigs <= 0) {
    throw new IllegalArgumentException("No configs match configSpec");
   }

即当numConfigs小于0时,系统检测配置不匹配

修复该错误需要调整 init方法的如下代码

private void init(boolean translucent, int depth, int stencil) {

 setEGLConfigChooser( translucent ?
   new ConfigChooser(8, 8, 8, 8, depth, stencil) :
   new ConfigChooser(5, 6, 5, 0, depth, stencil) );

修改为:

setEGLConfigChooser(5, 6, 5, 0, 0, 0);

就可以在模拟器运行。

变通版本:

if(translucent){
   setEGLConfigChooser(8, 8, 8, 8, depth, stencil);
  }else{
   setEGLConfigChooser(5, 6, 5, 0, depth, stencil);
  }

分析原因:

void android.opengl..setEGLConfigChooser(int redSize, int greenSize, int blueSize, int alphaSize, int depthSize, int stencilSize);

该API的6个参数表示设置的R,G,B,Alpha,depth,stencil的值

注意对应的重载版本

 public void setEGLConfigChooser(EGLConfigChooser configChooser) {
        checkRenderThreadState();
        mEGLConfigChooser = configChooser;
    }

public void setEGLConfigChooser(boolean needDepth) {
        setEGLConfigChooser(new SimpleEGLConfigChooser(needDepth));
    }

 public void setEGLConfigChooser(int redSize, int greenSize, int blueSize,
            int alphaSize, int depthSize, int stencilSize) 
{
        setEGLConfigChooser(new ComponentSizeChooser(redSize, greenSize,
                blueSize, alphaSize, depthSize, stencilSize));
    }

两个方法对应的内部实现还是有些差别的


转帖:http://hi.baidu.com/huareal/item/f00ad3cf8d35ebd7ee183b83

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值