diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-01 15:19:00 -0600 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-01 15:20:34 -0600 | 
| commit | c1abd758c51247ebaf3d4808a77513d7814205cd (patch) | |
| tree | aa6bce779a16faa095f88a26b6c329efdc4aeea4 /src/gallium/drivers | |
| parent | f067c6c452bdd5f5cc6b0f6b2f79fb3fc1162822 (diff) | |
gallium: remove the unused softpipe_winsys code
The struct is still there though until all winsys layers are updated
Diffstat (limited to 'src/gallium/drivers')
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 2 | ||||
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_winsys.h | 2 | 
3 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index edf91ecafa..fe9cd8375e 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -122,7 +122,7 @@ static void softpipe_destroy( struct pipe_context *pipe )  struct pipe_context *  softpipe_create( struct pipe_screen *screen,                   struct pipe_winsys *pipe_winsys, -                 struct softpipe_winsys *softpipe_winsys ) +                 void *unused )  {     struct softpipe_context *softpipe = CALLOC_STRUCT(softpipe_context);     uint i; @@ -212,8 +212,6 @@ softpipe_create( struct pipe_screen *screen,     softpipe->quad.colormask = sp_quad_colormask_stage(softpipe);     softpipe->quad.output = sp_quad_output_stage(softpipe); -   softpipe->winsys = softpipe_winsys; -     /*      * Create drawing context and plug our rendering stage into it.      */ diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index b3e2b2e435..62eabfb30e 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -57,8 +57,6 @@ struct sp_vertex_shader;  struct softpipe_context {     struct pipe_context pipe;  /**< base class */ -   struct softpipe_winsys *winsys;	/**< window system interface */ -     /* The most recent drawing state as set by the driver:      */ diff --git a/src/gallium/drivers/softpipe/sp_winsys.h b/src/gallium/drivers/softpipe/sp_winsys.h index 291825dfe2..4ab666486c 100644 --- a/src/gallium/drivers/softpipe/sp_winsys.h +++ b/src/gallium/drivers/softpipe/sp_winsys.h @@ -59,7 +59,7 @@ struct pipe_context;  struct pipe_context *softpipe_create( struct pipe_screen *,                                        struct pipe_winsys *, -				      struct softpipe_winsys * ); +				      void *unused );  struct pipe_screen *  | 
