Trying to debug alcMakeContextCurrent crash on Linux.

This commit is contained in:
the_fiddler 2008-01-20 22:04:41 +00:00
parent b7cd66d414
commit cf0747df6c

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);