gallium: fix bad ptr assignment

This commit is contained in:
Brian 2008-02-25 15:34:46 -07:00
parent 846b7fbc6c
commit cc0cf1154b
1 changed files with 1 additions and 1 deletions

View File

@ -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 &&