diff options
author | Vinson Lee <[email protected]> | 2014-01-13 15:51:50 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2014-01-13 15:54:26 -0800 |
commit | 8f9b70fa3c41418bc2b28551642ea786ed0c2e79 (patch) | |
tree | 3c713f1f4e0cb2fc22145c0346ba1de19cc7c6d9 /src | |
parent | aa7ae4fd6e24ba7f2b687e3f3c4301919830750b (diff) |
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/targets/egl-static/egl_pipe.c | 2 |
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 e5100c173e6..eb1cff9c76b 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" |