projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39790b6
)
mesa: fix indentation in mipmap.c (3 spaces)
author
Brian Paul
<brianp@vmware.com>
Tue, 27 Sep 2011 02:44:09 +0000
(20:44 -0600)
committer
Brian Paul
<brianp@vmware.com>
Tue, 27 Sep 2011 02:44:09 +0000
(20:44 -0600)
src/mesa/main/mipmap.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/mipmap.c
b/src/mesa/main/mipmap.c
index 1ead5ee104ab60f4ab52e198ba2144d7663af9ac..e0cc6a2ad5f3a33f1e0e0b301a5516d21afbb398 100644
(file)
--- 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;
}