mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 19:30:11 +01:00
radv: require DRM 3.27
Linux kernel 4.20+ is now required to use RADV. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22521>
This commit is contained in:
parent
d561bac6bb
commit
c920d676c0
1 changed files with 2 additions and 2 deletions
|
|
@ -48,8 +48,8 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|||
if (!ac_query_pci_bus_info(fd, &ws->info))
|
||||
return false;
|
||||
|
||||
if (ws->info.drm_minor < 23) {
|
||||
fprintf(stderr, "radv/amdgpu: DRM 3.23+ is required (Linux kernel 4.15+)\n");
|
||||
if (ws->info.drm_minor < 27) {
|
||||
fprintf(stderr, "radv/amdgpu: DRM 3.27+ is required (Linux kernel 4.20+)\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue