Module: Mesa Branch: master Commit: 1b6ba9c4c840e291cbbe19a8601b56d1d103179c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1b6ba9c4c840e291cbbe19a8601b56d1d103179c
Author: Brian Paul <[email protected]> Date: Wed Jan 2 13:46:20 2013 -0700 gallivm: support more immediates in lp_build_tgsi_info() Bump limit from 32 to 128. Fixes http://bugs.freedesktop.org/show_bug.cgi?id=58545 --- src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c index c62e117..1c54ef9 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c @@ -47,7 +47,7 @@ struct analysis_context struct lp_tgsi_info *info; unsigned num_imms; - float imm[32][4]; + float imm[128][4]; struct lp_tgsi_channel_info temp[32][4]; }; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
