summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-02-14 15:41:40 -0800
committerEric Anholt <eric@anholt.net>2014-02-18 10:01:45 -0800
commit422679835479a053d5b5ac9cf75e2fbb7e827755 (patch)
treeadf491b56ee7f4e6dc682bf2e6d096a6e6eb9f89 /src
parentf128bcc7c293013f4b44e4b661638333de0077c2 (diff)
downloadexternal_mesa3d-422679835479a053d5b5ac9cf75e2fbb7e827755.zip
external_mesa3d-422679835479a053d5b5ac9cf75e2fbb7e827755.tar.gz
external_mesa3d-422679835479a053d5b5ac9cf75e2fbb7e827755.tar.bz2
i965/fs: Drop dead comment about the old proj_attrib_mask optimization.
The code was removed early last year. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 4f5558b..d35928e 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -1108,12 +1108,6 @@ fs_visitor::emit_general_interpolation(ir_variable *ir)
} else {
/* Smooth/noperspective interpolation case. */
for (unsigned int k = 0; k < type->vector_elements; k++) {
- /* FINISHME: At some point we probably want to push
- * this farther by giving similar treatment to the
- * other potentially constant components of the
- * attribute, as well as making brw_vs_constval.c
- * handle varyings other than gl_TexCoord.
- */
struct brw_reg interp = interp_reg(location, k);
emit_linterp(attr, fs_reg(interp), interpolation_mode,
ir->data.centroid && !c->key.persample_shading,