Graphics command (fullscreen)
Archives Forums/MacOS X Discussion/Graphics command (fullscreen)
| ||
Does anyone know how to get fullscreen going on a mac? I can't seem to get it working. This isn't helped by the lack of documentation regarding the Graphics command flags! |
| ||
Graphics 800, 600, 32 Will give you a fullscreen at 32bit depth. 0 as the third param, will give you windowed. |
| ||
Thanks Brucey. Just discovered the very same thing. Stupid docs! Does anyone actually know what the flags param does? |
| ||
Oh, for options like zbuffer and things? |
| ||
Default has this enabled : GRAPHICS_BACKBUFFER | GRAPHICS_DEPTHBUFFER In the glgraphics.macos.m, it has these enums defined : FLAGS_BACKBUFFER= 0x2, FLAGS_ALPHABUFFER= 0x4, FLAGS_DEPTHBUFFER= 0x8, FLAGS_STENCILBUFFER=0x10, FLAGS_ACCUMBUFFER= 0x20, FLAGS_FULLSCREEN=0x80000000 |