diff options
author | Bas Nieuwenhuizen <[email protected]> | 2020-04-25 20:03:15 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-27 12:27:02 +0000 |
commit | 531728d6cbf0eb7d87698b9f03d0083ca0e2a7c0 (patch) | |
tree | 306812c979c35bf8449cc08e5c0b7484be06f7e5 /src/amd/vulkan/radv_device.c | |
parent | 03ba57c6c53214b19aa0fdb66c680f2cadc3bbd9 (diff) |
drm-uapi,radv,radeonsi: Add amdgpu_drm.h header.
Use it instead of the libdrm provided amdgpu_drm.h header. I used
the kernel revision from the README to get the header so the
header versions should be consistent.
Tested by removing /usr/include/libdrm/amdgpu_drm.h from my dev-machine.
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4749>
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 bae75e90558..b51d7325df8 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -50,7 +50,7 @@ #include "vk_util.h" #include <xf86drm.h> #include <amdgpu.h> -#include <amdgpu_drm.h> +#include "drm-uapi/amdgpu_drm.h" #include "winsys/amdgpu/radv_amdgpu_winsys_public.h" #include "winsys/null/radv_null_winsys_public.h" #include "ac_llvm_util.h" |