wisdom
Loading...
Searching...
No Matches
WisPresentFlags Struct Reference

Detailed Description

Specification


C version:

// Provided by Wisdom 0.7.0.
typedef enum WisPresentFlags {
WisPresentFlagsNone = 0,
WisPresentFlagsTimeoutOnBlock = (1u << 0),

C++ version:

namespace wis{
// Provided by Wisdom 0.7.0.
enum class PresentFlags : uint32_t {
None = 0,
TimeoutOnBlock = (1u << 0),
};
}

Description


Swapchain creation flags.

Note
Translates to DirectX 12 as uint32_t.

Values:

  • WisPresentFlagsNone = 0: No flags set. Swapchain is regular.
  • WisPresentFlagsTimeoutOnBlock = (1 << 0): Fail present if the presentation engine is busy. If not set, the implementation may choose to block until the presentation engine is available.

See Also


See also
Functions: wisSwapchainPresent