Specification
C Version:
C Implementation Specific Version:
bool wisVKDeviceGetFormatPresentationSupport(const WisVKDevice* self,
WisVKSurfaceView surface,
bool wisDX12DeviceGetFormatPresentationSupport(const WisDX12Device* self,
WisDX12SurfaceView surface,
C++ Version:
namespace wis{
WIS_NODISCARD bool Device::GetFormatPresentationSupport(wis::SurfaceView surface,
wis::DataFormat format) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD bool VKDevice::GetFormatPresentationSupport(wis::VKSurfaceView surface,
wis::DataFormat format) const noexcept;
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