VkPhysicalDeviceType | NVK Search
  1. No Results
Categories
VkPhysicalDeviceType Supported physical device types Stub
VkPhysicalDeviceType = {
  VK_PHYSICAL_DEVICE_TYPE_OTHER: 0,
  VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU: 1,
  VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU: 2,
  VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU: 3,
  VK_PHYSICAL_DEVICE_TYPE_CPU: 4
};
Properties VkPhysicalDeviceType.VK_PHYSICAL_DEVICE_TYPE_OTHER - the device does not match any other available types. VkPhysicalDeviceType.VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU - the device is typically one embedded in or tightly coupled with the host. VkPhysicalDeviceType.VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU - the device is typically a separate processor connected to the host via an interlink. VkPhysicalDeviceType.VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU - the device is typically a virtual node in a virtualization environment. VkPhysicalDeviceType.VK_PHYSICAL_DEVICE_TYPE_CPU - the device is typically running on the same processors as the host.