문제

I'm developing an Android application for Android 2.2.

When I run a program that uses OpenGL ES 2.0 on emulator I get the following error:

called unimplemented OpenGL ES API

But if I run the same program on a physical device with Android 2.2 it works perfectly.

What's happening?

Thanks.

도움이 되었습니까?

해결책

Probably that you tried to do something that isn't implemented in the emulator.

Testing stuff on the Android emulator isn't a very nice experience for any kind of application, and for games or other real-time apps, or anything that uses multitouch, you should opt for testing on the device as much as possible anyway, IMHO. So not much lost there.

다른 팁

The emulator doesn't support OpenGL. You need to run and debug the application on a real Android device.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top