glsl: validate linking of intrastage component qualifiers
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
@@ -988,6 +988,13 @@ cross_validate_globals(struct gl_shader_program *prog,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (var->data.location_frac != existing->data.location_frac) {
|
||||||
|
linker_error(prog, "explicit components for %s "
|
||||||
|
"`%s' have differing values\n",
|
||||||
|
mode_string(var), var->name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
existing->data.location = var->data.location;
|
existing->data.location = var->data.location;
|
||||||
existing->data.explicit_location = true;
|
existing->data.explicit_location = true;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user