diff options
author | Roland Scheidegger <[email protected]> | 2010-01-21 19:56:29 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-01-21 19:56:29 +0100 |
commit | eba1e2a44718bea398e49d496a78ee002c9922b8 (patch) | |
tree | f2a5c9cd4369c888a7199f9c0244869815bff06e /src/gallium/auxiliary/util/u_blit.c | |
parent | 41667a9a3e2c809d7d7e65f81782df8c89790bc6 (diff) |
gallium: adapt util code to blend changes
Diffstat (limited to 'src/gallium/auxiliary/util/u_blit.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_blit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_blit.c b/src/gallium/auxiliary/util/u_blit.c index 9725890bd4a..ebc9d3415fc 100644 --- a/src/gallium/auxiliary/util/u_blit.c +++ b/src/gallium/auxiliary/util/u_blit.c @@ -92,7 +92,7 @@ util_create_blit(struct pipe_context *pipe, struct cso_context *cso) /* disabled blending/masking */ memset(&ctx->blend, 0, sizeof(ctx->blend)); - ctx->blend.colormask = PIPE_MASK_RGBA; + ctx->blend.rt[0].colormask = PIPE_MASK_RGBA; /* no-op depth/stencil/alpha */ memset(&ctx->depthstencil, 0, sizeof(ctx->depthstencil)); |