diff options
author | Nicolai Hähnle <[email protected]> | 2016-01-15 16:56:15 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-01-19 10:52:35 -0500 |
commit | e6281a285012d76cf60fb8639838c369cf4d438f (patch) | |
tree | 4b6e527ff9551e96ae78976f7f2dd7cc4b064951 /src/gallium | |
parent | 2bcacc69b9935f073e271527771b4fb42081dcb6 (diff) |
util/u_pstipple.c: copy immediates during transformation
Apparently, nobody has combined stippling with a fragment shader
containing immediates in almost five years...
Fixes a bug in Kodi with radeonsi reported by Christian König.
Cc: "11.0 11.1" <[email protected]>
Tested-by: Christian König <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_pstipple.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_pstipple.c b/src/gallium/auxiliary/util/u_pstipple.c index 08dec13846d..3428172203b 100644 --- a/src/gallium/auxiliary/util/u_pstipple.c +++ b/src/gallium/auxiliary/util/u_pstipple.c @@ -230,6 +230,7 @@ pstip_transform_immed(struct tgsi_transform_context *ctx, struct pstip_transform_context *pctx = (struct pstip_transform_context *) ctx; pctx->numImmed++; + ctx->emit_immediate(ctx, immed); } |