diff options
author | Keith Whitwell <[email protected]> | 2009-11-24 15:04:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-24 15:04:18 +0000 |
commit | fe2b31e4a896167a33d267822b36eb2de0ceecba (patch) | |
tree | e43f45ffff27ff86c686b0b06f8ce3ddd327ab05 /src/gallium/auxiliary/tgsi/tgsi_parse.c | |
parent | 7d6c8f980d1e23ad6f557d650e89c715861a3b0c (diff) |
tgsi: rename fields of tgsi_full_declaration to reduce verbosity
DeclarationRange -> Range
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_parse.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_parse.c b/src/gallium/auxiliary/tgsi/tgsi_parse.c index ff593fdc325..7946fdd7326 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_parse.c +++ b/src/gallium/auxiliary/tgsi/tgsi_parse.c @@ -112,7 +112,7 @@ tgsi_parse_token( memset(decl, 0, sizeof *decl); copy_token(&decl->Declaration, &token); - next_token( ctx, &decl->DeclarationRange ); + next_token( ctx, &decl->Range ); if( decl->Declaration.Semantic ) { next_token( ctx, &decl->Semantic ); |