diff options
author | Brian <[email protected]> | 2008-02-22 08:50:37 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-22 08:52:57 -0700 |
commit | b4d050ffccf46e5e7b40d8a2f3868cc73fcf110e (patch) | |
tree | f88fa3e630fa6ccf27ffecc96fc7fc6c284df156 | |
parent | f1bef2cba2e6e4c0988b05306dd1435b8c0df3d5 (diff) |
cell: fix build: s/dest/vertex/
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_vertex_shader.c | 2 |
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 f7ef72e5a2c..42cc47cbfea 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++) { |