mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
glsl: set user defined varyings to smooth by default in ES
This is usually handled by the backends in order to handle the various interactions with the gl_*Color built-ins. The problem is this means linking will fail if one side on the interface adds the smooth qualifier to the varying and the other side just uses the default even though they match. This fixes various deqp tests. The spec is not clear what to for desktop GL so leave it as is for now. Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92743
This commit is contained in:
parent
f638512890
commit
07e6a37332
1 changed files with 11 additions and 0 deletions
|
|
@ -2750,6 +2750,17 @@ interpret_interpolation_qualifier(const struct ast_type_qualifier *qual,
|
|||
"vertex shader inputs or fragment shader outputs",
|
||||
interpolation_string(interpolation));
|
||||
}
|
||||
} else if (state->es_shader &&
|
||||
((mode == ir_var_shader_in &&
|
||||
state->stage != MESA_SHADER_VERTEX) ||
|
||||
(mode == ir_var_shader_out &&
|
||||
state->stage != MESA_SHADER_FRAGMENT))) {
|
||||
/* Section 4.3.9 (Interpolation) of the GLSL ES 3.00 spec says:
|
||||
*
|
||||
* "When no interpolation qualifier is present, smooth interpolation
|
||||
* is used."
|
||||
*/
|
||||
interpolation = INTERP_QUALIFIER_SMOOTH;
|
||||
}
|
||||
|
||||
return interpolation;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue