![]() |
![]()
| ![]() |
![]()
NAMEvideo_displaymodes - Retrieve (or set) platform-specific output display options. SYNOPSISmodelist or nil or bool
DESCRIPTIONSome video platforms allow the user to dynamically change how output is being mapped. This is necessary for multiple- display support and support for changing video configuration and behavior when a user hotplugs a display. There are four ways of using this function. If it is called with no arguments, the underlying video platform will be requested to do a rescan of devices and connectors. This can stall graphics for noticable (100ms+) periods of time for some systems, but is necessary where we do not have working hotplug support. It is also an asynchronous process and any results will be propagated as _display_state events. Calling this function with a display index will return a table of possible modes. Calling this function with a display index and a modeid obtained from a previous table from video_displaymodes will attempt to switch the display to that mode and return success or not as a boolean. This can be further hinted by providing a modeopts table. The valid keys for this table are: *modeopts:number:vrr* for setting the refresh rate target (Hz) or a <= 0 value for letting the platform dynamically decide. *modeopts:int:quality* for setting the mode scanout quality. This overrides the behaviour for WORLDID and directly composited output only. If another rendertarget has been set as the direct output through map_video_display then the properties of the rendertarget store takes precendent. The permitted quality options are the same as for alloc_surface : ALLOC_QUALITY_LOW (typically RGB 565), ALLOC_QUALITY_NORMAL ( RGB 888), ALLOC_QUALITY_HIGH (R10G10B10, "deep"), ALLOC_QUALITY_FLOAT 16 ( HDR - FP 16) or ALLOC_QUALITY_FLOAT 32 ( HDR - FP 32). Calling this function on a display that supports dynamic (caller-defined) modes, with a width and a height set will try to force that specific dynamic mode and return success or not as a boolean. NOTES
EXAMPLEfunction video_displaymodes0() MISUSEfunction video_displaymodes0() SEE ALSO:
|