summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/compiler/glsl/builtin_types.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/glsl/builtin_types.cpp b/src/compiler/glsl/builtin_types.cpp
index b29d71fa0a5..d3a28acf27b 100644
--- a/src/compiler/glsl/builtin_types.cpp
+++ b/src/compiler/glsl/builtin_types.cpp
@@ -53,9 +53,9 @@
&glsl_type::_struct_##NAME##_type;
static const struct glsl_struct_field gl_DepthRangeParameters_fields[] = {
- glsl_struct_field(glsl_type::float_type, "near"),
- glsl_struct_field(glsl_type::float_type, "far"),
- glsl_struct_field(glsl_type::float_type, "diff"),
+ glsl_struct_field(glsl_type::float_type, GLSL_PRECISION_HIGH, "near"),
+ glsl_struct_field(glsl_type::float_type, GLSL_PRECISION_HIGH, "far"),
+ glsl_struct_field(glsl_type::float_type, GLSL_PRECISION_HIGH, "diff"),
};
static const struct glsl_struct_field gl_PointParameters_fields[] = {