summaryrefslogtreecommitdiff
path: root/src/gallium/winsys
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2010-03-04 16:23:05 +0000
committerKeith Whitwell <keithw@vmware.com>2010-03-04 16:23:05 +0000
commit23e951d0da5802fec70996e46ad6f0abc411594c (patch)
treeaeb9290749f4255ede5ca93bc19e6a82522ee0e3 /src/gallium/winsys
parent94ce4eb3c27706d992226d847d123c46b14b1c4f (diff)
gallium: fix llvmpipe after winsys move
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r--src/gallium/winsys/xlib/xlib_llvmpipe.c5
-rw-r--r--src/gallium/winsys/xlib/xlib_softpipe.c1
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/winsys/xlib/xlib_llvmpipe.c b/src/gallium/winsys/xlib/xlib_llvmpipe.c
index 9929ba52e7..cb559f9080 100644
--- a/src/gallium/winsys/xlib/xlib_llvmpipe.c
+++ b/src/gallium/winsys/xlib/xlib_llvmpipe.c
@@ -41,13 +41,14 @@
#if defined(GALLIUM_LLVMPIPE)
#include "llvmpipe/lp_texture.h"
-#include "llvmpipe/lp_winsys.h"
+#include "llvmpipe/lp_screen.h"
#include "state_tracker/sw_winsys.h"
+#include "util/u_debug.h"
static struct pipe_screen *
xlib_create_llvmpipe_screen( void )
{
- struct llvmpipe_winsys *winsys;
+ struct sw_winsys *winsys;
struct pipe_screen *screen;
winsys = xlib_create_sw_winsys();
diff --git a/src/gallium/winsys/xlib/xlib_softpipe.c b/src/gallium/winsys/xlib/xlib_softpipe.c
index df93de551c..47fec4313b 100644
--- a/src/gallium/winsys/xlib/xlib_softpipe.c
+++ b/src/gallium/winsys/xlib/xlib_softpipe.c
@@ -31,6 +31,7 @@
#include "softpipe/sp_texture.h"
#include "softpipe/sp_screen.h"
#include "state_tracker/sw_winsys.h"
+#include "util/u_debug.h"
static struct pipe_screen *
xlib_create_softpipe_screen( void )