Trying to debug alcMakeContextCurrent crash on Linux.

This commit is contained in:
the_fiddler 2008-01-20 22:04:41 +00:00
parent 4fa393a03f
commit 9855854b39

View file

@ -56,10 +56,14 @@ namespace Examples
context.IsCurrent = false;
Trace.Assert(!context.IsCurrent);
context.Suspend();
Trace.WriteLine("IsCurrent = true...");
context.IsCurrent = true;
Trace.Assert(!context.IsCurrent);
context.Process();
Trace.WriteLine("AudioContext.CurrentContext...");
Trace.Assert(AudioContext.CurrentContext == context);