mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-16 10:50:28 +01:00
gallivm: Use the correct context for integers
See: http://bugs.freedesktop.org/29407
This commit is contained in:
parent
4f5e51068b
commit
cd5af8c703
1 changed files with 1 additions and 1 deletions
|
|
@ -533,7 +533,7 @@ emit_fetch(
|
|||
reg->Register.Index * 4 + swizzle);
|
||||
|
||||
/* index_vec = index_vec + addr_vec */
|
||||
index_vec = lp_build_add(&bld->base, index_vec, addr_vec);
|
||||
index_vec = lp_build_add(&bld->int_bld, index_vec, addr_vec);
|
||||
|
||||
/* Gather values from the constant buffer */
|
||||
res = build_gather(bld, bld->consts_ptr, index_vec);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue