diff options
author | Michal Krol <[email protected]> | 2008-05-31 19:51:50 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-05-31 19:51:50 +0200 |
commit | 347d28fd20645674c3509b9fb8ebf8c31a24c239 (patch) | |
tree | 93664ce53091731bb4b30288ea284831518a707e /src/gallium/drivers/cell/spu/spu_exec.c | |
parent | 56fc7690d791819d81ff1c6e6e22d22017c68919 (diff) |
cell: Fix build after TGSI declaration interface changes.
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_exec.c')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_exec.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_exec.c b/src/gallium/drivers/cell/spu/spu_exec.c index 48edc62f49b..69b05261209 100644 --- a/src/gallium/drivers/cell/spu/spu_exec.c +++ b/src/gallium/drivers/cell/spu/spu_exec.c @@ -830,13 +830,11 @@ exec_declaration(struct spu_exec_machine *mach, unsigned first, last, mask; interpolation_func interp; - assert( decl->Declaration.Declare == TGSI_DECLARE_RANGE ); - - first = decl->u.DeclarationRange.First; - last = decl->u.DeclarationRange.Last; + first = decl->DeclarationRange.First; + last = decl->DeclarationRange.Last; mask = decl->Declaration.UsageMask; - switch( decl->Interpolation.Interpolate ) { + switch( decl->Declaration.Interpolate ) { case TGSI_INTERPOLATE_CONSTANT: interp = constant_interpolation; break; |