glutVideoResizeGet
Prev GLUT Next

Name

glutVideoResizeGet — retrieves GLUT video resize information represented by integers.

C Specification

int glutVideoResizeGet (GLenum param );

Python Specification

glutVideoResizeGet ( param ) →  None

Parameters

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_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 , GLUT_VIDEO_RESIZE_IN_USE

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


Prev Up Next
glutUseLayer Home glutVisibilityFunc