diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-09-21 11:54:57 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-09-21 11:54:57 -0600 |
commit | 440a5c7c24e65dd19689ba2d2ce231a7ea7e4704 (patch) | |
tree | ed850f30b93b3924fcd0292a181238b8371e7bc4 /src | |
parent | a3a8887e5742bc18476deafcf45f220de89c1c1d (diff) |
remove debug printfs
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c index b1cf122695..d0d97ab0f8 100644 --- a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c +++ b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c @@ -67,7 +67,6 @@ map_register_file_index( * If a program uses 3 input attribs, the mapped indexes will be 1,2,3.
* etc.
*/
- printf("Map %d input %d to %d\n", processor, index, mapped_index);
return inputMapping[index];
case TGSI_FILE_OUTPUT:
@@ -90,7 +89,6 @@ map_register_file_index( /* vertex output slots are tightly packed, find mapped pos */
/* mapped_index = VERT_RESULT_x */
mapped_index = outputMapping[index];
- printf("Map VP output from %d to %d\n", index, mapped_index);
}
break;
|