From c3b701d63c01b019a62cf320e9f06f9c12a02ab7 Mon Sep 17 00:00:00 2001 From: Simone Scanzoni Date: Sun, 13 Apr 2014 02:36:20 +0200 Subject: [PATCH] egl-static: fix build after recent radeon winsys changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marek Olšák --- src/gallium/targets/egl-static/egl_pipe.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/targets/egl-static/egl_pipe.c b/src/gallium/targets/egl-static/egl_pipe.c index 1c369199674..4f960a52ffe 100644 --- a/src/gallium/targets/egl-static/egl_pipe.c +++ b/src/gallium/targets/egl-static/egl_pipe.c @@ -51,10 +51,14 @@ #endif /* for r600 */ #if _EGL_PIPE_R600 +#include "radeon/drm/radeon_winsys.h" +#include "radeon/drm/radeon_drm_public.h" #include "r600/r600_public.h" #endif /* for radeonsi */ #if _EGL_PIPE_RADEONSI +#include "radeon/drm/radeon_winsys.h" +#include "radeon/drm/radeon_drm_public.h" #include "radeonsi/si_public.h" #endif /* for vmwgfx */