diff options
author | Brian <[email protected]> | 2008-02-27 08:58:12 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-27 08:58:12 -0700 |
commit | e8c0162fa0c4720aea612a617cbd02b83590763c (patch) | |
tree | 716a0336e23e611f30497901d3371a470c916790 /src/gallium/drivers/softpipe/sp_context.c | |
parent | 8d94dabad8400cf65363d107a0605a013b542fd1 (diff) |
gallium: softpipe_init_texture_funcs(), make texture func static
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 6a884327e00..78acf51433a 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -279,12 +279,7 @@ struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys, softpipe->pipe.flush = softpipe_flush; softpipe_init_query_funcs( softpipe ); - - /* textures */ - softpipe->pipe.texture_create = softpipe_texture_create; - softpipe->pipe.texture_release = softpipe_texture_release; - softpipe->pipe.texture_update = softpipe_texture_update; - softpipe->pipe.get_tex_surface = softpipe_get_tex_surface; + softpipe_init_texture_funcs( softpipe ); /* * Alloc caches for accessing drawing surfaces and textures. |