[edit] Win32 [/edit]
This is a beauty!
Create EXEs of the two programs below. Then run exe #1 and leave it running, then run exe #2.
When both programs are running, something most unusual is happening!

Note: Its intentional that one is DX and the other is GL. This weird effect doesn't happen if both programs are DX or both are GL. It only happens when I'm using one of each.
Program 1:
Program 2:
This is a beauty!
Create EXEs of the two programs below. Then run exe #1 and leave it running, then run exe #2.
When both programs are running, something most unusual is happening!

Note: Its intentional that one is DX and the other is GL. This weird effect doesn't happen if both programs are DX or both are GL. It only happens when I'm using one of each.
Program 1:
Graphics 800,600 While Not KeyDown(key_escape) Cls DrawText "Program 1",50,50 Flip Wend
Program 2:
SetGraphicsDriver GLMax2DDriver() Graphics 800,600 While Not KeyDown(key_escape) Cls DrawText "Program 2",50,100 Flip Wend