diff options
author | Keith Whitwell <keithw@vmware.com> | 2010-03-21 17:25:50 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-03-21 17:25:50 +0000 |
commit | 484b1947f4af81bab60b41f21c3c23ea6f67488c (patch) | |
tree | 43442868beeaa1231bb125dcf9da3cbfeabbb958 | |
parent | ac76ac6eb30f4f9aa9f5733d60358b357925953a (diff) |
nvfx: restore usage of pipe_winsys
The interface that cannot be killed...
-rw-r--r-- | src/gallium/drivers/nvfx/nvfx_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_screen.c b/src/gallium/drivers/nvfx/nvfx_screen.c index 2638892088..ee95972e73 100644 --- a/src/gallium/drivers/nvfx/nvfx_screen.c +++ b/src/gallium/drivers/nvfx/nvfx_screen.c @@ -1,5 +1,6 @@ #include "pipe/p_screen.h" #include "pipe/p_state.h" +#include "util/u_simple_screen.h" #include "nouveau/nouveau_screen.h" @@ -17,7 +18,7 @@ * with same number of bits everywhere. */ struct nouveau_winsys { - //struct pipe_winsys base; + struct pipe_winsys base; struct pipe_screen *pscreen; |