Function OpenWindowEx(title$, x, y, w, h, mode, aa, stencil_buffer, vsync)
Opens a graphics window
Returns true if window was opened and false if a window could not be opened
-
WINDOWPOS_CENTERED can be used to center the window
-
w, h - The size of the window
-
mode - Refer to WindowMode() for values that can be set
-
aa - The level of AntiAliasing
-
A value of 0 means no AntiAliasing which can improve performance
-
If the value selected is not supported then a lower value will be selected internally
-
stencil_buffer (true / false) - determines whether stencil buffer will be used for shadows
-
vsync - determines if vsync will be enabled for the window
Related:
OpenWindow
WindowMode