diff options
author | Roland Scheidegger <[email protected]> | 2013-04-19 03:38:50 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-04-20 02:27:53 +0200 |
commit | 8f5d4283c0448ed2e5d2c12bb46ec70be7744a7b (patch) | |
tree | 79453fe3afa29cf8400013b92445b314a53825dd /src/gallium/auxiliary | |
parent | 107550e71a762bf1999220a81b61107384eca065 (diff) |
gallivm: use uint build context for mask instead of float
Unsurprisingly noone was using it except for grabbing builder.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index af8abb1fcd6..680a9c1f3f7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -2851,7 +2851,7 @@ lp_build_tgsi_soa(struct gallivm_state *gallivm, max_output_vertices); } - lp_exec_mask_init(&bld.exec_mask, &bld.bld_base.base); + lp_exec_mask_init(&bld.exec_mask, &bld.bld_base.int_bld); bld.system_values = *system_values; |