video_set(var width,var height,var depth,var screen)Like video_switch, but the width and height can now be set individually, thus allowing arbitrary video resolutions not contained in the 12 supported modes.
Parameters:width width of screen resolution
height height of screen resolution
depth color depth of screen resolution
screen fullscreen or window mode
Remarks:In window mode, arbitrary video resolutions are supported as long as they fit on the desktop screen and sufficient video memory is available.
In fullscreen mode, only a few video resolutions are supported, dependent on the 3D card.
Speed:Medium
Example:Code:
// place the window at position (500,300) and remove the
bordervideo_window(vector(500,300,0),nullvector,1,NULL);
// But a small engine window at this position (to fake the eninge into another applictaion)
video_set(100, 100, 32, 0);
From the
M A N U A L