diff options
author | Dave Airlie <[email protected]> | 2017-02-14 16:09:25 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-02-15 05:02:29 +1000 |
commit | eea562f87565bbccbe71ff33daf9db89bc883207 (patch) | |
tree | 974d6fdd70cfaa385b477f452f95e20f1b83ebe9 | |
parent | 5e988ac61f38e8a4497b171c45cfe9521925e206 (diff) |
radv: re-enable init gfx state on CIK.
Once the color alignment was fixed this works fine now.
Tested-by: Kai Wasserbäch <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_device.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 9bc44b84a2a..1132eeb52d7 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -949,8 +949,7 @@ VkResult radv_CreateDevice( goto fail; } - /* temporarily disabled on CIK */ - if (device->physical_device->rad_info.chip_class > CIK) + if (device->physical_device->rad_info.chip_class >= CIK) cik_create_gfx_config(device); *pDevice = radv_device_to_handle(device); |