summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_sf.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-23 00:58:13 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-23 00:58:13 +0000
commit21172d4358be5cce3bda244b33e3728a5fde3751 (patch)
treeefe1ce2b8910ae849ea057d33d95c908e25d33e3 /src/gallium/drivers/i965/brw_sf.c
parent8bf75f28de161173d1cdaad8c74bcac074e1211e (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.c3
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 a28fb71589..e1986a9dbb 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;
}