Specification
C Version:
C Implementation Specific Version:
void wisVKDeviceQueryProperties(const WisVKDevice* self,
void* properties);
void wisDX12DeviceQueryProperties(const WisDX12Device* self,
void* properties);
C++ Version:
namespace wis{
void Device::QueryProperties(void* properties) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKDevice::QueryProperties(void* properties) const noexcept;
void DX12Device::QueryProperties(void* properties) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisDevice instance.
properties describes a pointer to one of the query structs, which is filled with device properties.
Description
See Also