summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/prog_parameter.h
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_parameter.h
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_parameter.h')
-rw-r--r--src/mesa/program/prog_parameter.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/program/prog_parameter.h b/src/mesa/program/prog_parameter.h
index d17069090ef..ef6731ee0db 100644
--- a/src/mesa/program/prog_parameter.h
+++ b/src/mesa/program/prog_parameter.h
@@ -44,10 +44,6 @@ extern "C" {
* Program parameter flags
*/
/*@{*/
-#define PROG_PARAM_BIT_CENTROID 0x1 /**< for varying vars (GLSL 1.20) */
-#define PROG_PARAM_BIT_INVARIANT 0x2 /**< for varying vars (GLSL 1.20) */
-#define PROG_PARAM_BIT_FLAT 0x4 /**< for varying vars (GLSL 1.30) */
-#define PROG_PARAM_BIT_LINEAR 0x8 /**< for varying vars (GLSL 1.30) */
#define PROG_PARAM_BIT_CYL_WRAP 0x10 /**< XXX gallium debug */
/*@}*/