What graphic cards do Android emulator GPU emulation support?

旧街凉风 提交于 2019-12-04 22:17:31

问题


I have HD7690M XT (an overclocked version of 6770M) and Android emulator (sdk tool rev.20) for ICS failed to start hardware OpenGL ES emulation with the following error message:

emulator: ERROR: Could not load OpenGLES emulation library: Could not load DLL!
emulator: WARNING: Could not initialize OpenglES emulation, using software renderer.

and with software renderer I got really bad color resolution (please see the attached screenshots). I suspect that this is due to the software renderer (no such problem in emulating earlier versions of Android). Have someone who can run hardware emulation seen this problem?

What graphic cards can hardware GPU emulation run on? (You can see detailed debug messages by executing $ emulator -avd your_avd_name -verbose)


回答1:


I had the same problem on my Windows 7 (64-bit) machine. The reason was that the libOpenglRender.DLL could not be located. I added C:\Program Files (x86)\Android\android-sdk\tools\lib to the PATH variable and can start the emulator now without error message. However, I don't see a difference in quality of the graphics compared to your screenshot.




回答2:


Copy the file below from SDK\tools\lib to SDK\tools.

  1. libEGL_translator.dll
  2. libGLES_CM_translator.dll
  3. libGLES_V2_translator.dll
  4. libOpenglRender.dll



回答3:


Copy all the dll files from tools\lib to tools.




回答4:


Add toos\lib to PATH works, the only thing you need to remember is to add it in the HEAD of the PATH, not the end. Check this post: https://code.google.com/p/android/issues/detail?id=33336



来源:https://stackoverflow.com/questions/11567574/what-graphic-cards-do-android-emulator-gpu-emulation-support

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!