I'm trying to use SDL.NET on Ubuntu 10.10, and it seems to keep crashing when calling the Fill method on a surface. I've installed all of the libraries required with apt-get. The default hello world example works fine, but if i change the Go method and add the Tick method as below,

public void Go()
{
    Events.Quit += new EventHandler<QuitEventArgs>( this.Quit );
    Events.Tick += new EventHandler<TickEventArgs>( this.Tick );
    Events.Fps = 5;

    Events.Run();
}

private void Tick( object sender, TickEventArguments e )
{
    screen.Fill( System.Drawing.Color.White );
}

the program then crashes with

Loaded assembly: /home/rchowe/Projects/CSSDLTest/CSSDLTest/bin/Debug/CSSDLTest.exe
Loaded assembly: /home/rchowe/Projects/CSSDLTest/CSSDLTest/bin/Debug/SdlDotNet.dll [External]
Loaded assembly: /usr/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll [External]
Loaded assembly: /home/rchowe/Projects/CSSDLTest/CSSDLTest/bin/Debug/Tao.Sdl.dll [External]
Stacktrace:

  at (wrapper managed-to-native) Tao.Sdl.Sdl.SDL_MapRGBA (intptr,byte,byte,byte,byte) <IL 0x00013, 0x000ea>
  at (wrapper managed-to-native) Tao.Sdl.Sdl.SDL_MapRGBA (intptr,byte,byte,byte,byte) <IL 0x00013, 0x000ea>
  at SdlDotNet.Graphics.Surface.GetColorValue (System.Drawing.Color) <IL 0x0005f, 0x00223>
  at SdlDotNet.Graphics.Surface.Fill (System.Drawing.Rectangle,System.Drawing.Color) <IL 0x00028, 0x00193>
  at SdlDotNetExamples.SmallDemos.Rectangles.Tick (object,SdlDotNet.Core.TickEventArgs) [0x00000] in /home/rchowe/Projects/CSSDLTest/CSSDLTest/Program.cs:94
  at SdlDotNet.Core.Events.OnTick (SdlDotNet.Core.TickEventArgs) <IL 0x00015, 0x00081>
  at SdlDotNet.Core.Events.ThreadTicker () <IL 0x00057, 0x001cb>
  at SdlDotNet.Core.Events.Run () <IL 0x00012, 0x00083>
  at SdlDotNetExamples.SmallDemos.Rectangles.Go () [0x00072] in /home/rchowe/Projects/CSSDLTest/CSSDLTest/Program.cs:67
  at SdlDotNetExamples.SmallDemos.Rectangles.Main () [0x00000] in /home/rchowe/Projects/CSSDLTest/CSSDLTest/Program.cs:107
  at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) <IL 0x0001b, 0x000c1>

Native stacktrace:

    /usr/bin/mono() [0x48563b]
    /usr/bin/mono() [0x4d275f]
    /lib/libpthread.so.0(+0xfb40) [0x7f2f93750b40]
    /usr/lib/libSDL-1.2.so.0(SDL_MapRGBA+0) [0x7f2f8fd4ec80]
    [0x41afcfea]

Debug info from gdb:

Could not attach to process.  If your uid matches the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user.  For more details, see /etc/sysctl.d/10-ptrace.conf
ptrace: Operation not permitted.

=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================

Update: This seems to be a problem with SDL.NET exclusively on 64-bit Ubuntu, and still hasn't gone away (I tried it again the other day). The framework's authors say not to use it on a 64-bit system.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.