基本上,我刚刚深入研究了一些 Android 和 OpenGL ES 2.0 编程并遇到了一些问题。
我的代码编译得很好并且可以运行,但是 opengl 函数似乎不起作用。
GLES20.createShader(GLES20.GL_VERTEX_SHADER);
GLES20.glCreateProgram();
都将返回 0。
同样是这样:
int posHandle = GLES20.glGetAttribLocation(mShader.getProgramId(), "vPosition");
将返回 -1 等等。
我如何创建我的活动:
// Activity
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mSurfaceView = new GLESSurfaceView(this);
final ActivityManager activityManager = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
final ConfigurationInfo configInfo = activityManager.getDeviceConfigurationInfo();
final boolean supports_gles2 = configInfo.reqGlEsVersion >= 0x20000;
if (supports_gles2)
{
mSurfaceView.setEGLContextClientVersion(2);
mSurfaceView.setRenderer(new GLESRenderer());
}
else
{
//Log.e("", "Doesn't support GLES 2.0");
}
setContentView(mSurfaceView);
}
我在 AndroidManifest.xml 中有这个
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
我认为应该是让 GLES 2.0 功能正常工作吗?如果需要,我可以提供更多代码,但它基本上只是着色器设置、创建顶点缓冲区然后渲染基本形状。
干杯伙计们
编辑:我应该添加 GLES20.glGetError() 返回 GL_NO_ERROR 标志