diff options
author | Ben Skeggs <[email protected]> | 2008-03-13 12:36:35 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-03-13 13:39:16 +1100 |
commit | 9a4938d7033101122b627786273ff37229b5558a (patch) | |
tree | d629284a7f272015d1719d46e4eefab29aea31f2 /src/gallium/drivers/nv40/nv40_vertprog.c | |
parent | 03ec66375889f049b09f39ba98515aa35ac48164 (diff) |
nouveau: match interface changes
Diffstat (limited to 'src/gallium/drivers/nv40/nv40_vertprog.c')
-rw-r--r-- | src/gallium/drivers/nv40/nv40_vertprog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv40/nv40_vertprog.c b/src/gallium/drivers/nv40/nv40_vertprog.c index 5b7a343e55d..3d730c1a321 100644 --- a/src/gallium/drivers/nv40/nv40_vertprog.c +++ b/src/gallium/drivers/nv40/nv40_vertprog.c @@ -535,7 +535,7 @@ nv40_vertprog_prepare(struct nv40_vpc *vpc) struct tgsi_parse_context p; int nr_imm = 0; - tgsi_parse_init(&p, vpc->vp->pipe->tokens); + tgsi_parse_init(&p, vpc->vp->pipe.tokens); while (!tgsi_parse_end_of_tokens(&p)) { const union tgsi_full_token *tok = &p.FullToken; @@ -576,7 +576,7 @@ nv40_vertprog_translate(struct nv40_context *nv40, return; } - tgsi_parse_init(&parse, vp->pipe->tokens); + tgsi_parse_init(&parse, vp->pipe.tokens); while (!tgsi_parse_end_of_tokens(&parse)) { tgsi_parse_token(&parse); |