diff options
author | emersion <contact@emersion.fr> | 2018-10-14 08:32:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 08:32:08 +0200 |
commit | f3d2f7c3d1d346c8844cbed32de5beaedbefa28e (patch) | |
tree | 917af5ae2a4af96b12c47f73d17405d8922afc60 | |
parent | 31f338bb361d740a23f0e4edcbd36f846f439d17 (diff) | |
parent | 43d0ebfdac78d645a0dd14469553192c3f9cef87 (diff) |
Merge pull request #1310 from colemickens/patch-1
Fix include path for (libdrm/)drm_fourcc.h
-rw-r--r-- | render/egl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/egl.c b/render/egl.c index 585baaeb..1f8ff25d 100644 --- a/render/egl.c +++ b/render/egl.c @@ -3,7 +3,7 @@ #include <EGL/egl.h> #include <EGL/eglext.h> #include <stdlib.h> -#include <drm_fourcc.h> +#include <libdrm/drm_fourcc.h> #include <wlr/render/egl.h> #include <wlr/util/log.h> #include "glapi.h" |