summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/cell/spu/spu_funcs.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-10-13 11:16:04 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-10-13 16:43:35 -0600
commitc8fb3682619ea49c5fefdf8b88cdb95eac7478ff (patch)
treeed0997fb48546e883056eaf0a271e411a513423a /src/gallium/drivers/cell/spu/spu_funcs.c
parent3b07c28dee74c7aa3be5efac8084d610675af291 (diff)
cell: remove old texture code
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_funcs.c')
-rw-r--r--src/gallium/drivers/cell/spu/spu_funcs.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_funcs.c b/src/gallium/drivers/cell/spu/spu_funcs.c
index 13c234ea2e..4c90b701ee 100644
--- a/src/gallium/drivers/cell/spu/spu_funcs.c
+++ b/src/gallium/drivers/cell/spu/spu_funcs.c
@@ -104,27 +104,8 @@ static struct vec_4x4
spu_txp(vector float s, vector float t, vector float r, vector float q,
unsigned unit)
{
- //const uint unit = 0;
struct vec_4x4 colors;
-#if 0
- vector float coords[4];
-
- coords[0] = s;
- coords[1] = t;
- coords[2] = r;
- coords[3] = q;
- _transpose_matrix4x4(coords, coords);
-
- /* get four texture samples */
- colors.v[0] = spu.sample_texture[unit](unit, coords[0]);
- colors.v[1] = spu.sample_texture[unit](unit, coords[1]);
- colors.v[2] = spu.sample_texture[unit](unit, coords[2]);
- colors.v[3] = spu.sample_texture[unit](unit, coords[3]);
-
- _transpose_matrix4x4(colors.v, colors.v);
-#else
spu.sample_texture4[unit](s, t, r, q, unit, colors.v);
-#endif
return colors;
}