summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-22 08:50:37 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-02-22 08:52:57 -0700
commitb4d050ffccf46e5e7b40d8a2f3868cc73fcf110e (patch)
treef88fa3e630fa6ccf27ffecc96fc7fc6c284df156 /src
parentf1bef2cba2e6e4c0988b05306dd1435b8c0df3d5 (diff)
cell: fix build: s/dest/vertex/
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/cell/ppu/cell_vertex_shader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_vertex_shader.c b/src/gallium/drivers/cell/ppu/cell_vertex_shader.c
index f7ef72e5a2..42cc47cbfe 100644
--- a/src/gallium/drivers/cell/ppu/cell_vertex_shader.c
+++ b/src/gallium/drivers/cell/ppu/cell_vertex_shader.c
@@ -123,7 +123,7 @@ cell_vertex_shader_queue_flush(struct draw_context *draw)
for (j = 0; j < n; j++) {
vs->elts[j] = draw->vs.queue[i + j].elt;
- vs->vOut[j] = (uintptr_t) draw->vs.queue[i + j].dest;
+ vs->vOut[j] = (uintptr_t) draw->vs.queue[i + j].vertex;
}
for (/* empty */; j < SPU_VERTS_PER_BATCH; j++) {