summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/egl-static
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2014-01-13 15:51:50 -0800
committerVinson Lee <vlee@freedesktop.org>2014-01-13 15:54:26 -0800
commit8f9b70fa3c41418bc2b28551642ea786ed0c2e79 (patch)
tree3c713f1f4e0cb2fc22145c0346ba1de19cc7c6d9 /src/gallium/targets/egl-static
parentaa7ae4fd6e24ba7f2b687e3f3c4301919830750b (diff)
downloadexternal_mesa3d-8f9b70fa3c41418bc2b28551642ea786ed0c2e79.zip
external_mesa3d-8f9b70fa3c41418bc2b28551642ea786ed0c2e79.tar.gz
external_mesa3d-8f9b70fa3c41418bc2b28551642ea786ed0c2e79.tar.bz2
egl-static: Fix build error.
Fix build regression introduced with commit 786af2f963925df2c2a6fb60b29a83e8340f03c7. egl_pipe.c:46:38: fatal error: radeonsi/radeonsi_public.h: No such file or directory #include "radeonsi/radeonsi_public.h" ^ Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=73578 Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'src/gallium/targets/egl-static')
-rw-r--r--src/gallium/targets/egl-static/egl_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/egl-static/egl_pipe.c b/src/gallium/targets/egl-static/egl_pipe.c
index e5100c1..eb1cff9 100644
--- a/src/gallium/targets/egl-static/egl_pipe.c
+++ b/src/gallium/targets/egl-static/egl_pipe.c
@@ -43,7 +43,7 @@
/* for r600 */
#include "r600/r600_public.h"
/* for radeonsi */
-#include "radeonsi/radeonsi_public.h"
+#include "radeonsi/si_public.h"
/* for vmwgfx */
#include "svga/drm/svga_drm_public.h"
#include "svga/svga_public.h"