diff options
author | Brian <[email protected]> | 2008-02-25 15:34:46 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-25 15:34:46 -0700 |
commit | cc0cf1154b6288d49d7a9dfd18fb666331dd7334 (patch) | |
tree | 399c815e589f2c27744616dae8e824bd711d3518 /src/gallium | |
parent | 846b7fbc6c9cbd57eed01bd04b1da73109935091 (diff) |
gallium: fix bad ptr assignment
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c index 6e5e4d64d11..7dd1c6f6faa 100644 --- a/src/gallium/auxiliary/draw/draw_context.c +++ b/src/gallium/auxiliary/draw/draw_context.c @@ -262,7 +262,7 @@ int draw_find_vs_output(struct draw_context *draw, uint semantic_name, uint semantic_index) { - const struct pipe_shader_state *vs = &draw->vertex_shader->state; + const struct pipe_shader_state *vs = draw->vertex_shader->state; uint i; for (i = 0; i < vs->num_outputs; i++) { if (vs->output_semantic_name[i] == semantic_name && |