it's possible to generate 2 differents (no clone) screens with Blitz ?
For example with 2 graphics cards
someone have already try it ?
For example with 2 graphics cards
someone have already try it ?
Graphics3d 2048 by 768
CameraViewport camera1,0,0,1024,768 CameraViewport camera2,1024,0, 1024,768
; GfxDriver Examples ; Count how many drivers there are totalDrivers=CountGfxDrivers() Print "Your drivers:" ; Go through them all and print their names (most people will have only 1) For t = 1 To totalDrivers Print t+") " + GfxDriverName$(t) Next ; WaitKey() sample Print "Press any key to continue." key=WaitKey()
; GfxDriver Examples ; Count how many drivers there are totalDrivers=CountGfxDrivers() Print "Choose a driver to use:" ; Go through them all and print their names (most people will have only 1) For t = 1 To totalDrivers Print t+") " + GfxDriverName$(t) Next ; Let the user choose one driver=Input("Enter Selection:") ; Set the driver! SetGfxDriver driver Print "Your driver has been selected!" ;GRAPHICS Example ; Set The Graphic Mode Graphics 800,600 ; Now print something on the graphic screen Text 0,0, "This is some text printed on the graphic screen (and a white box)! Press ESC ..." ; Now for a box Rect 100,100,200,200,1 While Not KeyHit(1) Wend