diff options
author | Marek Olšák <[email protected]> | 2015-01-04 21:58:42 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-01-07 12:06:43 +0100 |
commit | 1b82eb677de63ec49f56800b81ac49b79fc5576a (patch) | |
tree | f6229b1c662f596e11bb6f7249fefaf324356157 /src/gallium/auxiliary/tgsi/tgsi_scan.c | |
parent | eaae92a349af1fd6641c4bdd4bfd1185b1b6fe3e (diff) |
tgsi: add uses_centroid into tgsi_shader_info
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_scan.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index eb313e430d6..6210ebdb3ad 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -191,6 +191,9 @@ tgsi_scan_shader(const struct tgsi_token *tokens, info->input_cylindrical_wrap[reg] = (ubyte)fulldecl->Interp.CylindricalWrap; info->num_inputs++; + if (fulldecl->Interp.Location == TGSI_INTERPOLATE_LOC_CENTROID) + info->uses_centroid = TRUE; + if (semName == TGSI_SEMANTIC_PRIMID) info->uses_primid = TRUE; else if (procType == TGSI_PROCESSOR_FRAGMENT) { |