From 16fb04ccb5d7631225b49114e8d87b50c9608971 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 30 Aug 2005 23:50:23 +0000 Subject: added some parenthesis to silence warnings --- src/mesa/drivers/dri/i810/i810tex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/dri/i810/i810tex.c b/src/mesa/drivers/dri/i810/i810tex.c index a86d434db0..f657abe671 100644 --- a/src/mesa/drivers/dri/i810/i810tex.c +++ b/src/mesa/drivers/dri/i810/i810tex.c @@ -455,8 +455,8 @@ i810ChooseTextureFormat( GLcontext *ctx, GLint internalFormat, case GL_RGBA12: case GL_RGBA16: case GL_COMPRESSED_RGBA: - if ( (format == GL_BGRA) && (type == GL_UNSIGNED_SHORT_1_5_5_5_REV) - || (format == GL_RGBA) && (type == GL_UNSIGNED_SHORT_5_5_5_1) + if ( ((format == GL_BGRA) && (type == GL_UNSIGNED_SHORT_1_5_5_5_REV)) + || ((format == GL_RGBA) && (type == GL_UNSIGNED_SHORT_5_5_5_1)) || (internalFormat == GL_RGB5_A1) ) { return &_mesa_texformat_argb1555; } -- cgit v1.2.3