diff options
author | Brian Paul <[email protected]> | 2009-04-03 16:37:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-04-03 16:37:36 -0600 |
commit | a5ce781282b674002379d699a7f2e1ebf3a46df1 (patch) | |
tree | 462cb89b8a86fb84aa462fa0b82b34f6eb57991e /src/mesa/main | |
parent | 5d3b1494b699184ba9363ee199490104048e9a2c (diff) |
mesa: remove extra semicolons
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texformat_tmp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/texformat_tmp.h b/src/mesa/main/texformat_tmp.h index d0d38046082..ef5bb34db6a 100644 --- a/src/mesa/main/texformat_tmp.h +++ b/src/mesa/main/texformat_tmp.h @@ -1112,7 +1112,7 @@ static void FETCH(f_ci8)( const struct gl_texture_image *texImage, texel[GCOMP] = texel[BCOMP] = 0.0F; texel[ACOMP] = table[index]; - break;; + break; case GL_LUMINANCE: texel[RCOMP] = texel[GCOMP] = @@ -1124,25 +1124,25 @@ static void FETCH(f_ci8)( const struct gl_texture_image *texImage, texel[GCOMP] = texel[BCOMP] = texel[ACOMP] = table[index]; - break;; + break; case GL_LUMINANCE_ALPHA: texel[RCOMP] = texel[GCOMP] = texel[BCOMP] = table[index * 2 + 0]; texel[ACOMP] = table[index * 2 + 1]; - break;; + break; case GL_RGB: texel[RCOMP] = table[index * 3 + 0]; texel[GCOMP] = table[index * 3 + 1]; texel[BCOMP] = table[index * 3 + 2]; texel[ACOMP] = 1.0F; - break;; + break; case GL_RGBA: texel[RCOMP] = table[index * 4 + 0]; texel[GCOMP] = table[index * 4 + 1]; texel[BCOMP] = table[index * 4 + 2]; texel[ACOMP] = table[index * 4 + 3]; - break;; + break; default: _mesa_problem(ctx, "Bad palette format in fetch_texel_ci8"); return; |