diff options
author | Roland Scheidegger <sroland@vmware.com> | 2010-06-09 18:46:48 +0200 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2010-06-09 18:46:52 +0200 |
commit | 26d5d4d99510148eef4fd20845b7790b4fedc355 (patch) | |
tree | 89748271d5577ed2f1138945797e7a6cabe59889 | |
parent | 04490ad31d0d763a0a1da7b521da55f5ea14e1cd (diff) |
llvmpipe: fix copy & paste bug in clear logic
fixes bug 28450.
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index b6db66fe64..e8aafee33f 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -326,7 +326,7 @@ lp_setup_clear( struct lp_setup_context *setup, if (flags & PIPE_CLEAR_DEPTHSTENCIL) { if (setup->fb.zsbuf && - ((setup->clear.flags & PIPE_CLEAR_DEPTHSTENCIL) != PIPE_CLEAR_DEPTHSTENCIL) && + ((flags & PIPE_CLEAR_DEPTHSTENCIL) != PIPE_CLEAR_DEPTHSTENCIL) && util_format_is_depth_and_stencil(setup->fb.zsbuf->format)) full_zs_clear = FALSE; |