glutVideoResizeGet(3)

glutVideoResizeGet(3) freeglut glutVideoResizeGet(3)

NAME

glutVideoResizeGet - retrieves GLUT video resize information represented by integers.

WARNING

Not yet implemented in freeglut.

SYNTAX

int glutVideoResizeGet(GLenum param);

ARGUMENTS

param
Name of video resize information to retrieve.
GLUT_VIDEO_RESIZE_POSSIBLE
Non-zero if video resizing is supported by the underlying system; zero if not supported. If this is zero, the other video resize GLUT calls do nothing when called. See the Implementation Notes sections below.
GLUT_VIDEO_RESIZE_IN_USE
GLUT_VIDEO_RESIZE_X_DELTA
GLUT_VIDEO_RESIZE_Y_DELTA
GLUT_VIDEO_RESIZE_WIDTH_DELTA
GLUT_VIDEO_RESIZE_HEIGHT_DELTA
GLUT_VIDEO_RESIZE_X
GLUT_VIDEO_RESIZE_Y
GLUT_VIDEO_RESIZE_WIDTH
GLUT_VIDEO_RESIZE_HEIGHT

DESCRIPTION

glutVideoResizeGet retrieves GLUT video resizing information represented by integers. The param parameter determines what type of video resize information to return.

X IMPLEMENTATION NOTES

The current implementation uses the SGIX_video_resize GLX extension. This extension is currently supported on SGI's InfiniteReality-based systems.

WIN32 IMPLEMENTATION NOTES

The current implementation never reports that video resizing is possible.

SEE ALSO

glutGet, glutSetupVideoResizing, glutStopVideoResizing, glutVideoResize, glutVideoPan

AUTHOR

Mark J. Kilgard (mjk@nvidia.com)

November 2025 freeglut