Tao.FreeGlut SDK Documentation

Glut.glutVideoResizeGet Method 

Retrieves GLUT video resize information represented by integers.

[Visual Basic]
Public Shared Function glutVideoResizeGet( _
   ByVal param As Integer _
) As Integer
[C#]
public static int glutVideoResizeGet(
   int param
);

Parameters

param

Name of video resize information to retrieve. Available values are:

Value Description
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.
GLUT_VIDEO_RESIZE_X_DELTA Unknown
GLUT_VIDEO_RESIZE_Y_DELTA Unknown
GLUT_VIDEO_RESIZE_WIDTH_DELTA Unknown
GLUT_VIDEO_RESIZE_HEIGHT_DELTA Unknown
GLUT_VIDEO_RESIZE_X Unknown
GLUT_VIDEO_RESIZE_Y Unknown
GLUT_VIDEO_RESIZE_WIDTH Unknown
GLUT_VIDEO_RESIZE_HEIGHT Unknown
GLUT_VIDEO_RESIZE_IN_USE Unknown

Remarks

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

Glut Class | Tao.FreeGlut Namespace | glutGet | glutSetupVideoResizing | glutStopVideoResizing | glutVideoPan | glutVideoResize