summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/cell
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-02 09:23:37 -0700
committerBrian Paul <brianp@vmware.com>2009-12-02 09:23:37 -0700
commit429bf7541777de08e070df3920b8566e3ac78223 (patch)
treebfef699ff3f00ad362090cb4d1760dd7d69d8950 /src/gallium/drivers/cell
parent144afacc6fc67d37780cbb29ccd298de9959b436 (diff)
cell: fix TGSI breakage
Diffstat (limited to 'src/gallium/drivers/cell')
-rw-r--r--src/gallium/drivers/cell/ppu/cell_gen_fp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_gen_fp.c b/src/gallium/drivers/cell/ppu/cell_gen_fp.c
index 4d43f65d29..1895a7940c 100644
--- a/src/gallium/drivers/cell/ppu/cell_gen_fp.c
+++ b/src/gallium/drivers/cell/ppu/cell_gen_fp.c
@@ -1351,7 +1351,7 @@ emit_function_call(struct codegen *gen,
static boolean
emit_TEX(struct codegen *gen, const struct tgsi_full_instruction *inst)
{
- const uint target = inst->InstructionExtTexture.Texture;
+ const uint target = inst->Texture.Texture;
const uint unit = inst->Src[1].Register.Index;
uint addr;
int ch;