summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/prog_print.c
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2012-10-10 16:52:23 -0700
committerKenneth Graunke <[email protected]>2012-10-16 11:35:24 -0700
commit4b13252bba7e0f6f70adf7036874988b810a67a3 (patch)
tree3987b8f46fd8c3b2dfd676df62842b16573bc150 /src/mesa/program/prog_print.c
parent8d418d16165624a59b2049d4097b4ab0dc82ffa9 (diff)
mesa: Remove GLSL-related PROG_PARAM_BIT flags.
GLSL doesn't use the program code anymore. Accordingly, there were no consumers of these flags, so there's no need to define them. Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_print.c')
-rw-r--r--src/mesa/program/prog_print.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/program/prog_print.c b/src/mesa/program/prog_print.c
index 26191baa6e5..bb506ea87c0 100644
--- a/src/mesa/program/prog_print.c
+++ b/src/mesa/program/prog_print.c
@@ -977,14 +977,6 @@ _mesa_fprint_parameter_list(FILE *f,
i, param->Size,
_mesa_register_file_name(list->Parameters[i].Type),
param->Name, v[0], v[1], v[2], v[3]);
- if (param->Flags & PROG_PARAM_BIT_CENTROID)
- fprintf(f, " Centroid");
- if (param->Flags & PROG_PARAM_BIT_INVARIANT)
- fprintf(f, " Invariant");
- if (param->Flags & PROG_PARAM_BIT_FLAT)
- fprintf(f, " Flat");
- if (param->Flags & PROG_PARAM_BIT_LINEAR)
- fprintf(f, " Linear");
fprintf(f, "\n");
}
}