summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimone Scanzoni <nonno.cicala@tiscali.it>2014-04-13 02:36:20 +0200
committerMarek Olšák <marek.olsak@amd.com>2014-04-13 02:37:36 +0200
commitc3b701d63c01b019a62cf320e9f06f9c12a02ab7 (patch)
tree07702b62486b64b9621649fa51230985005f442d
parentb92e7f2da9b72ca239204a7be802a5c64ff6cf4c (diff)
egl-static: fix build after recent radeon winsys changes
Signed-off-by: Marek Olšák <marek.olsak@amd.com>
-rw-r--r--src/gallium/targets/egl-static/egl_pipe.c4
1 files changed, 4 insertions, 0 deletions
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 */