Specification
C Version:
C Implementation Specific Version:
WisResult wisVKDeviceGetFormatProperties(
const WisVKDevice* self,
WisResult wisDX12DeviceGetFormatProperties(
const WisDX12Device* self,
C++ Version:
namespace wis{
WIS_NODISCARD wis::FormatProperties Device::GetFormatProperties(wis::DataFormat format,
wis::Result& out_result) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD wis::FormatProperties VKDevice::GetFormatProperties(wis::DataFormat format,
wis::Result& out_result) const noexcept;
WIS_NODISCARD wis::FormatProperties DX12Device::GetFormatProperties(wis::DataFormat format,
wis::Result& out_result) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisDevice instance.
format describes the format to get properties for.
properties Properties of the format.
- return denoting the outcome of operation.
Description
See Also