summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress_etc.c
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@lunarg.com>2014-02-21 10:31:43 -0700
committerMatt Turner <mattst88@gmail.com>2014-02-21 10:16:10 -0800
commit941769be81f3486f2793fbcdb3f70f468a073152 (patch)
treef0f4f98fa24cd4e43321126aaf772e840b3f6fbd /src/mesa/main/texcompress_etc.c
parent9b2fe7cf96dc25f52ae43c8dfda20ee354c329f2 (diff)
downloadexternal_mesa3d-941769be81f3486f2793fbcdb3f70f468a073152.zip
external_mesa3d-941769be81f3486f2793fbcdb3f70f468a073152.tar.gz
external_mesa3d-941769be81f3486f2793fbcdb3f70f468a073152.tar.bz2
mesa: Remove unnecessary condition.
Identified by Valgrind memory check. Initialized block-opaque in a different patch. This test seems unnecessary. If opaque must be true, just set to true. Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Courtney Goeltzenleuchter <courtney@LunarG.com>
Diffstat (limited to 'src/mesa/main/texcompress_etc.c')
-rw-r--r--src/mesa/main/texcompress_etc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/texcompress_etc.c b/src/mesa/main/texcompress_etc.c
index e3862be..cbda689 100644
--- a/src/mesa/main/texcompress_etc.c
+++ b/src/mesa/main/texcompress_etc.c
@@ -429,8 +429,7 @@ etc2_rgb8_parse_block(struct etc2_block *block,
block->is_planar_mode = true;
/* opaque bit must be set in planar mode */
- if (!block->opaque)
- block->opaque = true;
+ block->opaque = true;
for (i = 0; i < 3; i++) {
block->base_colors[0][i] = etc2_base_color_o_planar(src, i);