문제

I'm testing my cocos2dx app on Android and I'm getting a error which i cannot resolve. The error is:

called unimplemented OpenGL ES API. 

I am testing on Samsung S4, running Android 4.3 which has Open GL ES 3.0 enabled. It runs well on other devices that support open gl es 2.0. Anyone had any similar problems?

My AndroidManifest has this two values set:

<uses-sdk android:minSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" />
도움이 되었습니까?

해결책

Figured it out, I had CC_TEXTURE_ATLAS_USE_VAO enabled and it looks like the S4 doesn't support VAO (event though i get true in gl.supports_vertex_array_object). I guess it isn't fully implemented.

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