Failed to obtain GLES 2.x extensions striProcess finished with exit code -1073741819 (0xC0000005)

简介: android studio打开虚拟机时报错信息,解决办法之一(我成功的办法,其他方法试了没用),打开 设备管理器然后找到你的独显,然后禁用设备,然后再次启动设备就行了,最后再启动你的虚拟机就行了。

16:36    Emulator: init: Could not find wglGetExtensionsString!

16:36    Emulator: getGLES2ExtensionString: Could not find GLES 2.x config!

16:36    Emulator: Failed to obtain GLES 2.x extensions string!

16:36    Emulator: Could not initialize emulated framebuffer

16:36    Emulator: emulator: ERROR: OpenGLES emulation failed to initialize. Please consider the following troubleshooting steps:

16:36    Emulator: Process finished with exit code -1073741819 (0xC0000005)

android studio打开虚拟机时报错信息,解决办法之一(我成功的办法,其他方法试了没用),

打开 设备管理器然后找到你的独显,然后禁用设备,然后再次启动设备就行了,最后再启动你的虚拟机就行了。


最后:不能解决的话就选那个很卡的选项就能启动了,还是不行就重启下电脑。


20190305165153681.png

20190305165502660.png

目录
相关文章
|
5月前
|
开发工具 git
GitHub——Error: Process completed with exit code 126.
GitHub——Error: Process completed with exit code 126.
99 1
GitHub——Error: Process completed with exit code 126.
|
7月前
|
Linux Go C语言
【ERROR】chaincode install failed with status: 500 - failed to invoke backing implementation xxx
【ERROR】chaincode install failed with status: 500 - failed to invoke backing implementation xxx
152 0
|
8月前
|
开发者 iOS开发
no identity found Command CodeSign failed with a nonzero exit code
no identity found Command CodeSign failed with a nonzero exit code
113 0
|
8月前
Showing Recent Messages Command CodeSign failed with a nonzero exit code
Showing Recent Messages Command CodeSign failed with a nonzero exit code
86 0
|
8月前
|
C语言 C++
关于DEV中collect2.exe [Error] ld returned 1 exit status的问题解决!!!
关于DEV中collect2.exe [Error] ld returned 1 exit status的问题解决!!!
|
程序员 Go API
译|Don’t just check errors, handle them gracefully(一)
译|Don’t just check errors, handle them gracefully
86 0
|
Java Go API
译|Don’t just check errors, handle them gracefully(二)
译|Don’t just check errors, handle them gracefully(二)
105 0
|
Java Spring
Java was started but returned exit code=13
Java was started but returned exit code=13
109 0
|
Python
Pycharm报错:Process finished with exit code -1066598274 (0xC06D007E)
Pycharm报错:Process finished with exit code -1066598274 (0xC06D007E)
580 0
|
Python
pychram中提示:Process finished with exit code 0
"Process finished with exit code 0" 是PyCharm中的提示信息,表示程序已经成功地执行完毕并且没有发生任何错误。在PyCharm中,当程序正常终止并返回退出代码0时,这个消息会在控制台中显示。 在PyCharm中运行程序时,它会在一个单独的进程中执行,当程序完成执行后,它会向操作系统返回一个退出代码。退出代码0表示程序成功执行完毕,而非零的退出代码通常表示错误或异常终止。 当出现"Process finished with exit code 0"的提示时,意味着你的程序已经成功地执行完毕,没有发生任何错误或异常情况。你可以通过检查程序输出或任何其他预
2055 0