diff options
author | Dave Airlie <[email protected]> | 2017-05-15 11:27:10 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-06 12:48:57 +1000 |
commit | 2890a711587e03f906530919056275b599f5f03e (patch) | |
tree | 20335275c87315e1ba6e0f5b65ba790f0c7ee920 /src/amd/vulkan/radv_device.c | |
parent | ecdace80f4ec14b8a8a16554bcb8ed0b87144b97 (diff) |
radv: expose integrated device type for APUs.
This just sets the vulkan device type depending on whether
this is an APU or GPU.
Signed-off-by: Dave Airlie <[email protected]>
Fixes: f4e499ec791 "radv: add initial non-conformant radv vulkan driver"
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index ad4005ba61d..887916f558f 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -734,7 +734,7 @@ void radv_GetPhysicalDeviceProperties( .driverVersion = radv_get_driver_version(), .vendorID = 0x1002, .deviceID = pdevice->rad_info.pci_id, - .deviceType = VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU, + .deviceType = pdevice->rad_info.has_dedicated_vram ? VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU : VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU, .limits = limits, .sparseProperties = {0}, }; |