| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <html>
- <head>
- <title>Blitz3D Docs</title>
- <link rel=stylesheet href=../css/commands.css type=text/css>
- </head>
- <body>
- <h1>Windowed3D()</h1>
- <h1>Parameters</h1>
- <table>
- <tr>
- <td>
- None.
- </td>
- </tr>
- </table>
- <h1>Description</h1>
- <table>
- <tr>
- <td>
- Windowed3D returns true if the host machine's selected graphics card is capable of rendering 3D graphics in a window using the current desktop colour depth.
<br />
-
<br />
- This mainly concerns older graphics cards, some of which may not be able to render 3D in a window at all, while others maybe be able to only render in a window if the user's desktop is set to a certain colour depth such as 16.
- </td>
- </tr>
- </table>
- <h1><a href=../3d_examples/Windowed3D.bb>Example</a></h1>
- <table>
- <tr>
- <td>
- If Windowed3D ()
<br />
- Graphics3D 640, 480, 0, 2
<br />
- Print "Windowed mode!"
<br />
- Else
<br />
- Graphics3D 640, 480, 0, 1
<br />
- Print "Full screen modes only!"
<br />
- EndIf
<br />
-
<br />
- MouseWait
<br />
- End
- </td>
- </tr>
- </table>
- <br>
- <a target=_top href=../index.htm>Index</a><br>
- <br>
- Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=Windowed3D&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
- </html>
|