Module: Mesa Branch: gallium-resources Commit: 484b1947f4af81bab60b41f21c3c23ea6f67488c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=484b1947f4af81bab60b41f21c3c23ea6f67488c
Author: Keith Whitwell <[email protected]> Date: Sun Mar 21 17:25:50 2010 +0000 nvfx: restore usage of pipe_winsys The interface that cannot be killed... --- 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 2638892..ee95972 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
