diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c index 8423434e1c7..d281061a31f 100644 --- a/src/compiler/spirv/vtn_variables.c +++ b/src/compiler/spirv/vtn_variables.c @@ -1136,7 +1136,8 @@ apply_var_decoration(struct vtn_builder *b, { switch (dec->decoration) { case SpvDecorationRelaxedPrecision: - break; /* FIXME: Do nothing with this for now. */ + var_data->precision = GLSL_PRECISION_MEDIUM; + break; case SpvDecorationNoPerspective: var_data->interpolation = INTERP_MODE_NOPERSPECTIVE; break;