diff options
author | José Fonseca <[email protected]> | 2014-01-07 13:42:23 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2014-01-07 16:04:42 +0000 |
commit | 95bf222603bbbb643a6119e370c6a616ccc5ceaf (patch) | |
tree | 2d55d02960fc8e338bca3b28523f0e024f1e8653 /src/gallium/auxiliary | |
parent | 72c6d0e506ad0e8262dddbc7a7cf2d6813761753 (diff) |
cso_context: Fix cso_context::sample_mask initial value.
The initial value of cso_context::sample_mask_saved is irrelevant as it
will be overwritten with cso_context::sample_mask in
cso_save_sample_mask. Therefore it is cso_context::sample_mask that
needs to be properly initialized.
This fixes regressions in blits and mipmap generation after adding
support for sample_mask to llvmpipe.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index 8d217a4053e..cd7afa96479 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -269,7 +269,7 @@ struct cso_context *cso_create_context( struct pipe_context *pipe ) ctx); ctx->pipe = pipe; - ctx->sample_mask_saved = ~0; + ctx->sample_mask = ~0; ctx->aux_vertex_buffer_index = 0; /* 0 for now */ |