Skip to content

Commit

Permalink
GPU (Linux): fix apple gpu support
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterLi committed Jul 30, 2024
1 parent ec8391f commit 88a7468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/detection/gpu/gpu_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#include <inttypes.h>

#if __aarch64__
#if __has_include(<asahi_drm.h>)
#include <asahi_drm.h>
#if __has_include(<drm/asahi_drm.h>) && FF_HAVE_DRM
#include <drm/asahi_drm.h>
#include <drm.h>
#include <fcntl.h>
#include <sys/ioctl.h>
Expand Down

0 comments on commit 88a7468

Please sign in to comment.