Unable to find an entry point named 'glBindFramebuffer' in DLL 'opengl32.dll'. in MonoGame 3.0

前端 未结 2 632
野性不改
野性不改 2021-01-13 15:31

Recently I install MonoGame 3.0 on my Laptop. I took a band New \"MonoGame Windows OpenGL Project\" from project template and try to run it and i got this exception.

相关标签:
2条回答
  • 2021-01-13 15:55

    MonoGame 3.0 requires OpenGL 3. Try updating your graphics drivers, if that doesn't work then you're out of luck unless you get a new laptop.

    0 讨论(0)
  • 2021-01-13 16:00

    This is a known issue. You can try to find the installed driver and check its OpenGL capabilities. Looks like the drivers only support OpenGL 2.1, and further that support might not be added.

    You can try to wrap the instantiation in a try/catch, if that works for you.

    Good luck.

    0 讨论(0)
提交回复
热议问题