Name
SizeMoveDisplay -- change display position and/or size (V6.0)
Synopsis
int error = SizeMoveDisplay(APTR handle, int x, int y, int width,
                int height, ULONG flags, struct hwTagList *tags);
Function
This function must change the display position to the specified new position and the display size must be changed to the specified new dimensions. All values have to be passed in pixels.

After a display size change Hollywood will usually also call ChangeBufferSize() so that your plugin can adapt the size of its back buffer. The only time in which ChangeBufferSize() is not called after SizeMoveDisplay() is with enabled autoscaling because in that case the size of the back buffer does not change with the output display's size.

Inputs
handle
display handle returned by OpenDisplay()
x
new x position for this display
y
new y position for this display
width
new width for this display
height
new height for this display
flags
additional flags (currently 0)
t
taglist for additional options (currently always NULL)
Results
error
error code or 0 for success

Show TOC