mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
util: fix compile breakage
D'oh!
This commit is contained in:
parent
ba67d72c64
commit
40070e72d4
1 changed files with 1 additions and 1 deletions
|
|
@ -997,7 +997,7 @@ static void *get_clear_blend_state(struct blitter_context_priv *ctx,
|
|||
|
||||
blend.independent_blend_enable = 1;
|
||||
|
||||
for i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
|
||||
for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
|
||||
if (clear_buffers & (PIPE_CLEAR_COLOR0 << i)) {
|
||||
blend.rt[i].colormask = PIPE_MASK_RGBA;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue