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:
Timothy Arceri
2015-11-27 13:43:20 +11:00
parent 0317dfcd9b
commit 589053dac7

View File

@@ -988,6 +988,13 @@ cross_validate_globals(struct gl_shader_program *prog,
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.explicit_location = true;
} else {