Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

call to OpenGL ES API with no current context (logged once per thread)

I am using android phonegap to access html5 into android application. While I am running android application Logcat is showing the following error E/libEGL(614): call to OpenGL ES API with no current context (logged once per thread). Though I restarted eclipse and emulator,same error is showing. Helping Hands are highly appreciated.

like image 917
Ravikiran Avatar asked Mar 15 '12 14:03

Ravikiran


1 Answers

You get this error when trying to do hardware accelerated stuff such as css3 transitions. you have to enable hardware acceleration for your app in the manifest file.

<application android:hardwareAccelerated="true" ...>
like image 152
koffster Avatar answered Nov 09 '22 01:11

koffster