Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. This may happen sometimes but i found a fix. If this pops up:
  2.  
  3. 2019-09-23 06:32:26.599 [Error] Message: Failed to create graphics device!
  4. 2017-09-23 06:32:26.608 [Error] Stack Trace: at Microsoft.Xna.Framework.GraphicsDeviceManager.CreateDevice()
  5. at Microsoft.Xna.Framework.Game.DoInitialize()
  6. at Microsoft.Xna.Framework.Game.Run(GameRunBehavior runBehavior)
  7. at Intersect_MonoGameDx.Program.Main() in C:\Users\JC Snider\Desktop\AGD\Intersect-Engine\Intersect Client\ClientMain.cs:line 25
  8. 2017-09-23 06:32:26.608 [Error] Time: 9/23/2017 6:32:26 AM
  9.  
  10. What does it mean?
  11.  
  12. The game engine i am using to make this game uses a library called MonoGame for graphic rendering, audio playback, and input (keyboard/mouse) recognition. From a programming standpoint, MonoGame acts as a middleman between our commands and your graphics card. We tell MonoGame what to draw, and what music to play, and it does a lot of the heavy lifting. Okay, background knowledge out of the way. This error is from within MonoGame, it means that your graphics card in it's current state does not support the features required by our client.
  13.  
  14. What can you do?
  15.  
  16. Update your graphic drivers. This might fix it!
  17.  
  18. If you have Intel HD Graphics & Windows 10:
  19.  
  20. Someone from the Minecraft community made a driver patch. It's rather sketchy if I do say so myself but it resolved the issue for someone before. Antiviruses obviously won't like it, this does patch dll files. I invite you to try it at your own risk:
  21.  
  22. https://safenote.co/r/5e2d0a80074d04@19762262 (Password is: iaccepttherisks)
  23.  
  24. Is there a DirectX client?
  25.  
  26. Not at this time.
  27.  
  28. What are the /actual/ graphics card requirements?
  29.  
  30. According to MonoGame your graphics card and drivers must support OpenGl Version 2.1+ & ARB Extensions. That being said we've found a few instances where having these features still didn't work. It's a mystery to us at this time. If your device supports OpenGL Version 2.1+ & ARB Extensions and the client still doesn't work then this is likely a MonoGame error/mistake and you might find it working in the future.
  31.  
  32.  
  33. TLDR?
  34.  
  35. Update your graphics drivers. If that doesn't work you're out of luck for now. Sorry it won't work.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement