graphics3d 800,600,16,1

Blitz3D Forums/Blitz3D Programming/graphics3d 800,600,16,1

mouss38(Posted 2003) [#1]
graphics3d 800,600,16,1
This settings work on every pc ? (is the graphic card is 3d capable)


Ross C(Posted 2003) [#2]
i'd go for 640,480 if you want to be totally compatiable, but that's still fine and will work on ALOT of computers.


Rob(Posted 2003) [#3]
It works on my pc but there is corruption on the display.


Genexi2(Posted 2003) [#4]
I'd suggest using "graphics3d 800,600,0,1" instead, so Blitz chooses the bit-depth for the user's PC rather than forcing it to 16-bit.


Danny(Posted 2003) [#5]
To be super-safe, probably best to start the game with a small window (or a 640x480 mode) that will alow the user to set the resolution and launch the game from there....

-Danny


Shambler(Posted 2003) [#6]
Before setting any 3D graphics mode check if the host PC can handle it.


Rob(Posted 2003) [#7]
Shambler is correct. You can detect all this before starting. See Start.bb in your samples folders.


patisawesome(Posted 2003) [#8]
It works on mine.