Blitz3D not run with NVidea 3D Vision

Archives Forums/Blitz3D Bug Reports/Blitz3D not run with NVidea 3D Vision

TFT (der Falke)(Posted 2009) [#1]
Hallo.

i have bay the NVidea 3D Vision glasses, GForce GTS250 Graficcard and Samsung 2233RZ 120 Hz Monitor.
The first attemp all Blitz3D Games crash with MAV when command FLIP 1. After I updates all the drivers, games run with window mode. In fullscrenn i cant see the 3D Screen.

This is vor Mark special ... :-)

BR TFT


skidracer(Posted 2009) [#2]
Flip 1 is not suitable for stereo glass display that use full frame shutter system.


Warner(Posted 2009) [#3]
That is strange, since I used it several times. Also with the NVidia stereo glasses. It worked perfectly. Didn't use Flip False.
I remember at first, I had trouble getting it to work as well. I made shortcuts to enable/disable the stereoscopic rendering, and first launched the application, then enabled stereo. When it finally worked, it kept working every time.
In windowed mode, there is no stereo. Which might explain why it works in windowed mode.


TFT (der Falke)(Posted 2009) [#4]
Hallo,

@Warner, have you example that is work? Please post it.

TFT


TFT (der Falke)(Posted 2009) [#5]
Hallo,

This short code generates a MAV to flip.

Graphics 640, 480, 0, 1
Setbuffer Backbuffer()
While KeyDown(1) = 0
Winkel1 = (Winkel1 + 5) Mod 360
Winkel2 = (Winkel2 + 2) Mod 360
X = 320 + Cos(Winkel1) * 200 + Cos(Winkel2) * 120
Y = 240 + [[Sin](Winkel1) * 160 + Sin(Winkel2) * 80
Cls
Oval X-10, Y-10, 20, 20, 1
Flip
Wend
End

System : VISTA 64 BIT, ENGTS250, 8GB RAM, NVidea Stereo Driver install.

Please,please,please help my,

TFT


Panno(Posted 2009) [#6]
Graphics 640, 480, 0, 1

SetBuffer BackBuffer()

While KeyDown(1) = 0

Winkel1 = (Winkel1 + 5) Mod 360

Winkel2 = (Winkel2 + 2) Mod 360

X = 320 + Cos(Winkel1) * 200 + Cos(Winkel2) * 120

Y = 240 + Sin (Winkel1) * 160 + Sin(Winkel2) * 80

Cls

Oval X-10, Y-10, 20, 20, 1

Flip

Wend
End


TFT (der Falke)(Posted 2009) [#7]
Hallo Panno@

this is the example code from Blitz Help. The MAV cams from the Flip command.


Robin Hossain(Posted 2010) [#8]
skidracer,

Is there any alternative the flip that could be used or built as an external DLL based command ?


jfk EO-11110(Posted 2010) [#9]
You could try this:

Vwait:Flip 0

or, as a worst case test:
Vwait: copyrect 0,0,graphicswidth(),graphicsheight(),0,0,backbuffer(),frontbuffer()

Or try to get in Contact with Warner


_PJ_(Posted 2010) [#10]
Have you tried changing the resolution?