summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/mipmap.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-26 20:44:09 -0600
committerBrian Paul <brianp@vmware.com>2011-09-26 20:44:09 -0600
commit4c84fbea9d496567d706468113d63cd8f0faeb7f (patch)
treeebb05389a20fa29144ca76332ceaddc446b5eb1e /src/mesa/main/mipmap.c
parent39790b6450b770cd402bc08b9416cab67de3dedb (diff)
downloadexternal_mesa3d-4c84fbea9d496567d706468113d63cd8f0faeb7f.zip
external_mesa3d-4c84fbea9d496567d706468113d63cd8f0faeb7f.tar.gz
external_mesa3d-4c84fbea9d496567d706468113d63cd8f0faeb7f.tar.bz2
mesa: fix indentation in mipmap.c (3 spaces)
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r--src/mesa/main/mipmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c
index 1ead5ee..e0cc6a2 100644
--- a/src/mesa/main/mipmap.c
+++ b/src/mesa/main/mipmap.c
@@ -47,9 +47,9 @@ bytes_per_pixel(GLenum datatype, GLuint comps)
assert(b >= 0);
if (_mesa_type_is_packed(datatype))
- return b;
+ return b;
else
- return b * comps;
+ return b * comps;
}