Как исправить ошибку Genymotion openGL?

11476
Neo

Я пытаюсь открыть genymotion, после запуска он показывает следующую ошибку: enter image description here

Я видел на различных сайтах / блогах, что эта ошибка исправляется после обновления драйвера видеокарты. К сожалению, я использую старую материнскую плату с графикой ATI Radeon 3000 и у меня нет внешнего графического процессора. Я использую ОС Windows 8.1 и мой графический драйвер также обновлен до последней версии, доступной на сайте производителя (хотя я не нашел драйвер версии для Windows 8.1 для своей карты, поэтому я использую драйвер версии win7 для графики ATI Radeon 3000). обойти эту проблему ?? любая помощь очень ценится.

PS - мой внутренний графический процессор поддерживает OpenGL 2.0 и Directx 10.0

1
[тот же вопрос здесь] (http://stackoverflow.com/questions/23560545/genymotion-opengl-error), просто обновите драйвер вашей графической карты oscarthecat 8 лет назад 0

1 ответ на вопрос

2
Akash Pannu

First things first, OpenGL is not a library. It's a drawing API for talking with the graphics drivers to make the GPU do nice things.

As such, OpenGL comes as part of the graphics drivers. Unfortunately Microsoft decided that they don't like OpenGL and would not ship drivers fully equipped with modern OpenGL profiles through Windows' built in driver update mechanism. Oh, yes, they added legacy support for OpenGL-1.4 (which was specified in 2002), thank you very much.

So you have to take things into your own hands. First step: Go to the control panel and open the Hardware Manager. In the section Graphics Cards you'll find the name of your GPU. Most likely it will be made by one of Intel, Nvidia, AMD or ATI.

Depending on who made it you can find the drivers on:


Select the drivers appropriate for your system, download and install them. or how to check current version. Since OpenGL is not a library the truly limiting factor is the GPU in your system. If your GPU doesn't OpenGL-2 you're SOL. However you'd have a really, really old GPU for that and Windows-8 would not even boot on a system with such a GPU that old. Update your GPU drivers and you should be fine.

Похожие вопросы