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/drivers/cell/spu/spu_exec.c | |
parent | 7d6c8f980d1e23ad6f557d650e89c715861a3b0c (diff) |
tgsi: rename fields of tgsi_full_declaration to reduce verbosity
DeclarationRange -> Range
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_exec.c')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_exec.c b/src/gallium/drivers/cell/spu/spu_exec.c index 8d58c534bec..ee5e3432d5d 100644 --- a/src/gallium/drivers/cell/spu/spu_exec.c +++ b/src/gallium/drivers/cell/spu/spu_exec.c @@ -833,8 +833,8 @@ exec_declaration(struct spu_exec_machine *mach, unsigned first, last, mask; interpolation_func interp; - first = decl->DeclarationRange.First; - last = decl->DeclarationRange.Last; + first = decl->Range.First; + last = decl->Range.Last; mask = decl->Declaration.UsageMask; switch( decl->Declaration.Interpolate ) { |