Skip to content

Commit

Permalink
radv: Use the sysmem CS for correct generations.
Browse files Browse the repository at this point in the history
(family <= SI) != (family >= CIK)
  • Loading branch information
BNieuwenhuizen authored and airlied committed Sep 7, 2016
1 parent a133c2d commit e8d52a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
Expand Up @@ -299,7 +299,7 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)

ws->info.gart_page_size = alignment_info.size_remote;

ws->use_ib_bos = ws->family <= FAMILY_SI;
ws->use_ib_bos = ws->family >= FAMILY_CI;
return true;
fail:
return false;
Expand Down

0 comments on commit e8d52a5

Please sign in to comment.