Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - tucker87

Pages: [1]
1
DotNet / Re: problem with examples/opengl/opengl.cs @55
« on: April 08, 2016, 03:20:23 am »
Found a thread with a fix.

Replaced
var context = new GraphicsContext(new ContextHandle(IntPtr.Zero), null);

With
var wi = Utilities.CreateWindowsWindowInfo(window.SystemHandle);
var ctx = new GraphicsContext(GraphicsMode.Default, wi);
ctx.MakeCurrent(wi);
ctx.LoadAll();

I'm not sure this is the right way to go. But it works at least.

2
DotNet / Re: problem with examples/opengl/opengl.cs @55
« on: April 08, 2016, 03:06:51 am »
I'm having the same problems. About to start digging through the forums for answers...

Pages: [1]
anything