summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJakob Sinclair <[email protected]>2016-04-14 18:07:42 +0200
committerChad Versace <[email protected]>2016-04-26 14:36:29 -0700
commitdda50af9c4716f707fb915e080bfdb53f13588a9 (patch)
tree160bd5b9e099ce1aec2050b037db1cde8f3b03ea /src
parente5d027ec7d5f507489c44124e668d788728f25dd (diff)
mesa: Remove every double semi-colon
Signed-off-by: Jakob Sinclair <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp2
-rw-r--r--src/mesa/math/m_debug_norm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp b/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
index 8e2713a1227..654d67e581c 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
@@ -323,7 +323,7 @@ vec4_tcs_visitor::nir_emit_intrinsic(nir_intrinsic_instr *instr)
case nir_intrinsic_load_output:
case nir_intrinsic_load_per_vertex_output: {
src_reg indirect_offset = get_indirect_offset(instr);
- unsigned imm_offset = instr->const_index[0];;
+ unsigned imm_offset = instr->const_index[0];
dst_reg dst = get_nir_dest(instr->dest, BRW_REGISTER_TYPE_D);
dst.writemask = brw_writemask_for_size(instr->num_components);
diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c
index 197b43cf2ab..8be07eecbe3 100644
--- a/src/mesa/math/m_debug_norm.c
+++ b/src/mesa/math/m_debug_norm.c
@@ -172,7 +172,7 @@ static void ref_norm_transform_normalize( const GLmatrix *mat,
out[i][0] = out[i][1] = out[i][2] = 0;
}
} else {
- scale = lengths[i];;
+ scale = lengths[i];
SCALE_SCALAR_3V( out[i], scale, t );
}