私はstackoverflowの解決策に目を通しましたが、どれも私の問題を解決していないようです. マニフェスト ファイルに API を含めました。
<uses-sdk android:minSdkVersion="10" />
<uses-feature android:required="true" android:glEsVersion="0x00020000"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HidderActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
私のラッパーコードは次のとおりです。
class GLSurface extends GLSurfaceView
{
final renderer r;
public GLSurface(Context context)
{
super(context);
setEGLContextClientVersion(2);
r = new renderer();
setRenderer(r);
setRenderMode(GLSurfaceView.RENDERMODE_CONTINUOUSLY);
}
}
これがエラーです。
未実装の OpenGL ES API の呼び出し