summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-09-28 15:28:06 -0700
committerEric Anholt <eric@anholt.net>2010-09-28 16:26:58 -0700
commit9ac910cfcddf1b6e7c520261371e78fc9bcbddcf (patch)
treea0882320b27448f6fedc11012fff0aeb06201a55
parentff0eb45f47ebf2fcc1af06a8b6b934c79dff1d41 (diff)
i965: Clean up obsolete FINISHME comment.
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 2ed5f26ebd..4f5ca4e9fe 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -186,7 +186,6 @@ type_size(const struct glsl_type *type)
case GLSL_TYPE_BOOL:
return type->components();
case GLSL_TYPE_ARRAY:
- /* FINISHME: uniform/varying arrays. */
return type_size(type->fields.array) * type->length;
case GLSL_TYPE_STRUCT:
size = 0;