简体   繁体   English

无法在DLL“opengl32.dll”中找到名为“glBindFramebuffer”的入口点。在MonoGame 3.0中

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

Recently I install MonoGame 3.0 on my Laptop. 最近我在笔记本电脑上安装了MonoGame 3.0。 I took a band New "MonoGame Windows OpenGL Project" from project template and try to run it and i got this exception. 我从项目模板中选了一个乐队New“MonoGame Windows OpenGL Project”并尝试运行它,我得到了这个例外。

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

The exception was here: 例外是:

 public Game1()
 : base()
 {
   graphics = new GraphicsDeviceManager(this);<----|Unable to find an entry point named 'glBindFramebuffer' in DLL 'opengl32.dll'

I am installed : 我安装了:

MonoDevelop 3.0.6
gtk-sharp-2.12.10.win32
Opentk-2010-10-06
XNAGS40_Setup
jdk-7u9-windows-x64
MonoGame3.0

I am using : 我在用 :

Windows 7 x64
Visual studio 2012
ASUS A52F Laptop
Graphic : Integrated Intel® GMA HD

Does any thing need to install ? 有什么东西需要安装吗?

Note : If I use MonoGame 2.5.1.0 then everything works fine. 注意:如果我使用MonoGame 2.5.1.0,那么一切正常。 This exception occurs only when I install MonoGmae 30. 仅当我安装MonoGmae 30时才会发生此异常。

MonoGame 3.0需要OpenGL 3.尝试更新你的图形驱动程序,如果这不起作用,那么除非你得到一台新的笔记本电脑,否则你运气不好。

This is a known issue . 这是一个已知问题 You can try to find the installed driver and check its OpenGL capabilities . 您可以尝试查找已安装的驱动程序并检查其OpenGL功能 Looks like the drivers only support OpenGL 2.1, and further that support might not be added . 看起来驱动程序仅支持OpenGL 2.1,并且可能不会添加该支持。

You can try to wrap the instantiation in a try/catch , if that works for you. 如果适用于您,您可以尝试将实例化包装在try / catch中

Good luck. 祝好运。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无法在屏幕保护程序中的DLL“opengl32.dll”中找到入口点 - Unable to find an entry point in DLL 'opengl32.dll' in screensaver 无法在 DLL“ComCtl32”中找到名为“TaskDialogIndirect”的入口点 - Unable to find an entry point named 'TaskDialogIndirect' in DLL 'ComCtl32' .net6 无法在 DLL user32.dll 中找到名为“AdjustWindowRectExForDpi”的入口点 - .net6 unable to find an entry point named 'AdjustWindowRectExForDpi' in DLL user32.dll C#EntryPointNotFoundException无法在DLL&#39;kernel32.dll&#39;中找到名为&#39;SetDllDirectory&#39;的入口点 - C# EntryPointNotFoundException Unable to find an entry point named 'SetDllDirectory' in DLL 'kernel32.dll' 无法在 DLL &#39;CIMWin32.dll&#39; 中找到名为 &#39;Reset&#39; 的入口点 - Unable to find an entry point named 'Reset' in DLL 'CIMWin32.dll' 无法在DLL“advapi32.dll”模拟异常中找到名为“LogonUser”的入口点 - Unable to find an entry point named 'LogonUser' in DLL 'advapi32.dll' Impersonation exception 在DLL&#39;cvextern&#39;中找不到名为&#39;&#39;的入口点 - Unable to find an entry point named '' in DLL 'cvextern' 在DLL&#39;kernel32.dll&#39;中找不到名为&#39;GetProcessID&#39;的入口点 - Unable to find an entry point named 'GetProcessID' in DLL 'kernel32.dll' 在DLL&#39;mfplat.dll&#39;中找不到名为&#39;MFCreateMFByteStreamOnStreamEx&#39;的入口点 - Unable to find an entry point named 'MFCreateMFByteStreamOnStreamEx' in DLL 'mfplat.dll' 在DLL&#39;uxtheme.dll&#39;中找不到名为&#39;IsTjemePartDefined&#39;的入口点 - Unable to find an entry point named 'IsTjemePartDefined' in DLL 'uxtheme.dll'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM