diff options
author | Brian Paul <[email protected]> | 2015-09-01 16:29:17 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-09-01 16:29:17 -0600 |
commit | bd883c90708207c6848b7f7b263ce1ef4e6a475b (patch) | |
tree | ff14d805acb9d6f78728beb7de13ecc16afe6c0d /src/gallium/auxiliary/draw/draw_pipe_pstipple.c | |
parent | 56852e925e262c9a10454ed59a42ce12fb9c801c (diff) |
tgsi: add negate parameter to tgsi_transform_kill_inst()
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pipe_pstipple.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pipe_pstipple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c index 186b4cb4935..a51e91fe931 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c +++ b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c @@ -280,7 +280,8 @@ pstip_transform_prolog(struct tgsi_transform_context *ctx) /* KILL_IF -texTemp.wwww; # if -texTemp < 0, KILL fragment */ tgsi_transform_kill_inst(ctx, - TGSI_FILE_TEMPORARY, pctx->texTemp, TGSI_SWIZZLE_W); + TGSI_FILE_TEMPORARY, pctx->texTemp, + TGSI_SWIZZLE_W, TRUE); } |