projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae943f8
)
mesa: Use preprocessor to comment out code.
author
Vinson Lee
<vlee@vmware.com>
Sun, 17 Jan 2010 23:48:39 +0000
(15:48 -0800)
committer
Vinson Lee
<vlee@vmware.com>
Sun, 17 Jan 2010 23:48:39 +0000
(15:48 -0800)
src/mesa/main/texstore.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/texstore.c
b/src/mesa/main/texstore.c
index 792c83141ec67e813c91fbe5db56cf0fbc941740..fcd0a56d76aabf45a78a28ddd0034b2d27462725 100644
(file)
--- a/
src/mesa/main/texstore.c
+++ b/
src/mesa/main/texstore.c
@@
-263,7
+263,7
@@
compute_component_mapping(GLenum inFormat, GLenum outFormat,
map[ZERO] = ZERO;
map[ONE] = ONE;
-/*
+#if 0
_mesa_printf("from %x/%s to %x/%s map %d %d %d %d %d %d\n",
inFormat, _mesa_lookup_enum_by_nr(inFormat),
outFormat, _mesa_lookup_enum_by_nr(outFormat),
@@
-273,7
+273,7
@@
compute_component_mapping(GLenum inFormat, GLenum outFormat,
map[3],
map[4],
map[5]);
-*/
+#endif
}