c# - Monogame Error on running project: Microsoft.Xna.Framework.Graphics.NoSuitableGraphicsDeviceException -


in monogame 3.6 project running, updated sharpdx 4.0.1. after not start giving following error:

an unhandled exception of type 'microsoft.xna.framework.graphics.nosuitablegraphicsdeviceexception' occurred in monogame.framework.dll

additional information: failed create graphics device!

at stage in code @ "graphics.applychanges();":

    public game ()     {         graphics = new graphicsdevicemanager (this);         graphics.graphicsprofile = graphicsprofile.hidef;         this.ismousevisible = true;         graphics.applychanges(); //breaks on line.         content.rootdirectory = "content";     } 

i don't know version of sharpdx on before reverted 4.0.0, updated monogame, restarted, deleted/replaced dll's, updated graphics drivers (nvidia gtx 850m).

all seem find when googling error remove graphics.prefer multisampling had removed.

does know how fix and/or have suggestions?

edit: on windows 10


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -