diff options
author | Keith Whitwell <[email protected]> | 2009-11-23 00:58:13 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-23 00:58:13 +0000 |
commit | 21172d4358be5cce3bda244b33e3728a5fde3751 (patch) | |
tree | efe1ce2b8910ae849ea057d33d95c908e25d33e3 /src/gallium/drivers/i965/brw_sf.c | |
parent | 8bf75f28de161173d1cdaad8c74bcac074e1211e (diff) |
i965g: apply linear math to both linear and perspective attrs
Diffstat (limited to 'src/gallium/drivers/i965/brw_sf.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_sf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965/brw_sf.c b/src/gallium/drivers/i965/brw_sf.c index a28fb71589f..e1986a9dbbd 100644 --- a/src/gallium/drivers/i965/brw_sf.c +++ b/src/gallium/drivers/i965/brw_sf.c @@ -153,10 +153,9 @@ static enum pipe_error upload_sf_prog(struct brw_context *brw) case TGSI_INTERPOLATE_CONSTANT: break; case TGSI_INTERPOLATE_LINEAR: - case TGSI_INTERPOLATE_PERSPECTIVE: key.linear_attrs |= 1 << (i+1); break; -// case TGSI_INTERPOLATE_PERSPECTIVE: + case TGSI_INTERPOLATE_PERSPECTIVE: key.persp_attrs |= 1 << (i+1); break; } |