projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de10d38
)
radeonsi: Early return if no depth or stencil on release builds.
author
Vinson Lee
<vlee@freedesktop.org>
Thu, 29 Aug 2013 20:13:02 +0000
(13:13 -0700)
committer
Vinson Lee
<vlee@freedesktop.org>
Thu, 29 Aug 2013 22:49:12 +0000
(15:49 -0700)
Fixes "Missing break in switch" defect reported by Coverity.
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/drivers/radeonsi/r600_blit.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/radeonsi/r600_blit.c
b/src/gallium/drivers/radeonsi/r600_blit.c
index
396ee01
..
692e00b
100644
(file)
--- a/
src/gallium/drivers/radeonsi/r600_blit.c
+++ b/
src/gallium/drivers/radeonsi/r600_blit.c
@@
-131,6
+131,7
@@
void r600_blit_decompress_depth(struct pipe_context *ctx,
switch (util_format_has_depth(desc) | util_format_has_stencil(desc) << 1) {
default:
assert(!"No depth or stencil to uncompress");
+ return;
case 3:
custom_dsa = rctx->custom_dsa_flush_depth_stencil;
break;