X11 error with Agate 0.3

Hello,

I get a X11 error again with Agate 0.3.
I'm using this code:

  1. using System;
  2.  
  3. using AgateLib;
  4. using AgateLib.DisplayLib;
  5. using AgateLib.Geometry;
  6.  
  7. namespace DockFight
  8. {
  9.         class MainClass
  10.         {
  11.                 public static void Main(string[] args)
  12.                 {
  13.                         using(AgateSetup setup = new AgateSetup("DockFight", args))
  14.                         {
  15.                                 setup.InitializeAll();
  16.                                
  17.                                 if(setup.WasCanceled) return;
  18.                                
  19.                                 DisplayWindow displayWin = DisplayWindow.CreateWindowed("DockFight", 1024, 768);
  20.                                
  21.                                 while(Display.CurrentWindow.IsClosed == false)
  22.                                 {
  23.                                         Display.BeginFrame();
  24.                                        
  25.                                        
  26.                                         Display.Clear(Color.Black);
  27.                                        
  28.                                         Display.EndFrame();
  29.                                        
  30.                                         Core.KeepAlive();
  31.                                 }
  32.                         }
  33.                 }
  34.         }
  35. }

Error log: http://www.agate.pastebin.com/m4ce7ae28

I tried it with the OpenTK copy provided with Agate 0.3 and with OpenTK 0.9.5 download from the OpenTK website.

Ok, this is probably a

Ok, this is probably a regression from when you were having this problem before. I will look into it this weekend once I get back home.

Can you try this one?

Can you try this one? http://www.agatelib.org/download/OpenTK-1650.zip. I have updated to the latest subversion of OpenTK. This issue may have been an issue with OpenTK, someone with an nVidia 9800 GT reported a similar issue here: http://www.opentk.com/node/731

Tested

I tried the dlls from the link but it does not work.
This time it does not find a method.
Console log:
http://agatelib.pastebin.ca/1370421

Can you try this version and

Can you try this version and tell me if it works?
http://www.agatelib.org/download/agatelib-0.3.1-800.zip

I think 0.3.1 is about ready to be released, so if this version works okay I will move forward with that.

Sorry, I skipped this topic

Sorry, I skipped this topic accidentally.
I will try out the latest svn release as soon as possible and report back.

Tested with latest svn

Tested with latest svn version and AgateApplication, works great with OpenTK.

Ok, that's good to hear :)

Ok, that's good to hear :)

Ok, it looks like it got far

Ok, it looks like it got far enough to create a context properly, which was where the error you originally reported was occurring.