diff options
author | Brian <brian@i915.localnet.net> | 2008-02-26 19:31:22 -0700 |
---|---|---|
committer | Brian <brian@i915.localnet.net> | 2008-02-26 19:31:22 -0700 |
commit | 4da19dbcaa9f3e2d20fffd0145bf0bc756dd7542 (patch) | |
tree | efd946fe548caad53bec8b64a6152c3d5f621149 /src/gallium/drivers/softpipe/sp_state_sampler.c | |
parent | a6044bdf74bae96f05310ad6e39942f172b8ab02 (diff) |
gallium: remove pipe parameter from pipe_texture_reference()
Added pipe field to pipe_texture (temporary, see comments).
First step toward context-less texture creation...
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state_sampler.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_sampler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_sampler.c b/src/gallium/drivers/softpipe/sp_state_sampler.c index 18669a1c6e..1d6dd17d1d 100644 --- a/src/gallium/drivers/softpipe/sp_state_sampler.c +++ b/src/gallium/drivers/softpipe/sp_state_sampler.c @@ -83,7 +83,7 @@ softpipe_set_sampler_texture(struct pipe_context *pipe, draw_flush(softpipe->draw); assert(unit < PIPE_MAX_SAMPLERS); - pipe_texture_reference(pipe, &softpipe->texture[unit], texture); + pipe_texture_reference(&softpipe->texture[unit], texture); sp_tile_cache_set_texture(pipe, softpipe->tex_cache[unit], texture); |