diff options
author | Keith Whitwell <[email protected]> | 2010-10-06 22:25:48 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-10-09 11:42:48 +0100 |
commit | 8009886b0092df2783472deaac1bcaad4a802c19 (patch) | |
tree | 93de97caaaf48c510b785a3e09ecccfca1f4f16a /src/gallium/drivers/llvmpipe/lp_bld_interp.h | |
parent | d0bfb3c5144a9434efd4d53ced149d42016b5bdc (diff) |
llvmpipe: defer attribute interpolation until after mask and ztest
Don't calculate 1/w for quads which aren't visible...
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_interp.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_interp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.h b/src/gallium/drivers/llvmpipe/lp_bld_interp.h index 3054030f739..6588f7f2755 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_interp.h +++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.h @@ -89,7 +89,11 @@ lp_build_interp_soa_init(struct lp_build_interp_soa_context *bld, LLVMValueRef y); void -lp_build_interp_soa_update(struct lp_build_interp_soa_context *bld, +lp_build_interp_soa_update_inputs(struct lp_build_interp_soa_context *bld, + int quad_index); + +void +lp_build_interp_soa_update_pos(struct lp_build_interp_soa_context *bld, int quad_index); |