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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
WisSurfaceView surface,
WisDataFormat format);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
bool wisVKDeviceGetFormatPresentationSupport(const WisVKDevice* self,
WisVKSurfaceView surface,
WisDataFormat format);
// Provided by Wisdom 0.7.0.
bool wisDX12DeviceGetFormatPresentationSupport(const WisDX12Device* self,
WisDX12SurfaceView surface,
WisDataFormat format);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD bool Device::GetFormatPresentationSupport(wis::SurfaceView surface,
wis::DataFormat format) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD bool VKDevice::GetFormatPresentationSupport(wis::VKSurfaceView surface,
wis::DataFormat format) const noexcept;
// Provided by Wisdom 0.7.0.
WIS_NODISCARD bool DX12Device::GetFormatPresentationSupport(wis::DX12SurfaceView surface,
wis::DataFormat format) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisDevice instance.
  • surface describes a pointer to WisSurface to check the presentation support for.
  • format describes the format to check the presentation support for.
  • return Result of operation.

Description


See Also