projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69fc7a2
)
radv: disable gfx init on CIK for now
author
Dave Airlie
<airlied@redhat.com>
Mon, 13 Feb 2017 22:01:39 +0000
(08:01 +1000)
committer
Dave Airlie
<airlied@redhat.com>
Mon, 13 Feb 2017 22:01:39 +0000
(08:01 +1000)
Luzipher on irc report this hangs his Hawaii, disable for now
until I get time to debug.
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/vulkan/radv_device.c
patch
|
blob
|
history
diff --git
a/src/amd/vulkan/radv_device.c
b/src/amd/vulkan/radv_device.c
index 7a84f5cc7da0b2829aed5164a3ea52867c53dad0..c1c22411f94e5213d032ef9f093b2758940bec18 100644
(file)
--- a/
src/amd/vulkan/radv_device.c
+++ b/
src/amd/vulkan/radv_device.c
@@
-949,7
+949,8
@@
VkResult radv_CreateDevice(
goto fail;
}
- if (device->physical_device->rad_info.chip_class >= CIK)
+ /* temporarily disabled on CIK */
+ if (device->physical_device->rad_info.chip_class > CIK)
cik_create_gfx_config(device);
*pDevice = radv_device_to_handle(device);