diff options
author | Brian Paul <[email protected]> | 2011-09-26 20:44:09 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-26 20:44:09 -0600 |
commit | 4c84fbea9d496567d706468113d63cd8f0faeb7f (patch) | |
tree | ebb05389a20fa29144ca76332ceaddc446b5eb1e /src/mesa/main/mipmap.c | |
parent | 39790b6450b770cd402bc08b9416cab67de3dedb (diff) |
mesa: fix indentation in mipmap.c (3 spaces)
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r-- | src/mesa/main/mipmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index 1ead5ee104a..e0cc6a2ad5f 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; } |