Enum DxgiPresentOptions
Options for presenting frames to the output.
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
[Flags]
public enum DxgiPresentOptions
Fields
Name | Description |
---|---|
DoNotSequence | Present a frame from the current buffer to the output. Use this flag so that the presentation can use vertical-blank synchronization instead of sequencing buffers in the chain in the usual manner. |
DoNotWait | Specifies that the runtime will fail the presentation with the |
None | Present a frame from each buffer (starting with the current buffer) to the output. |
Restart | Specifies that the runtime will discard outstanding queued presents. |
RestrictToOutput | Indicates that presentation content will be shown only on the particular output. The content will not be visible on other outputs. For example, if the user tries to relocate video content on another output, the video content will not be visible. |
StereoPreferRight | Indicates that if the stereo present must be reduced to mono, right-eye viewing is used rather than left-eye viewing. |
StereoTemporaryMono | Indicates that the presentation should use the left buffer as a mono buffer. |
Test | Do not present the frame to the output. The status of the swap chain will be tested and appropriate errors returned. |
UseDuration | Must be set by media apps that are currently using a custom present duration (custom refresh rate). |