diff options
author | Brian Paul <[email protected]> | 2008-10-13 11:16:04 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-13 16:43:35 -0600 |
commit | c8fb3682619ea49c5fefdf8b88cdb95eac7478ff (patch) | |
tree | ed0997fb48546e883056eaf0a271e411a513423a /src/gallium/drivers/cell/spu/spu_command.c | |
parent | 3b07c28dee74c7aa3be5efac8084d610675af291 (diff) |
cell: remove old texture code
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_command.c')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_command.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_command.c b/src/gallium/drivers/cell/spu/spu_command.c index c59be7defde..d4cc9a21467 100644 --- a/src/gallium/drivers/cell/spu/spu_command.c +++ b/src/gallium/drivers/cell/spu/spu_command.c @@ -302,11 +302,9 @@ cmd_state_sampler(const struct cell_command_sampler *sampler) spu.sampler[sampler->unit] = sampler->state; if (spu.sampler[sampler->unit].min_img_filter == PIPE_TEX_FILTER_LINEAR) { - spu.sample_texture[sampler->unit] = sample_texture_bilinear; spu.sample_texture4[sampler->unit] = sample_texture4_bilinear; } else { - spu.sample_texture[sampler->unit] = sample_texture_nearest; spu.sample_texture4[sampler->unit] = sample_texture4_nearest; } } |