Turn off debug
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 8 Jun 2005 22:14:29 +0000 (22:14 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 8 Jun 2005 22:14:29 +0000 (22:14 +0000)
src/mesa/tnl/t_vb_arbprogram.c
src/mesa/tnl/t_vb_arbprogram_sse.c

index eeab0ed3ca34ea6a3fdfb6219463e92598253a57..07dc34d2668beb4a7681dbe74b2be3955677ab95 100644 (file)
@@ -26,7 +26,7 @@
  * \file t_arb_program.c
  * Compile vertex programs to an intermediate representation.
  * Execute vertex programs over a buffer of vertices.
- * \author Keith Whitwell
+ * \author Keith Whitwell, Brian Paul
  */
 
 #include "glheader.h"
@@ -1276,7 +1276,7 @@ run_arb_vertex_program(GLcontext *ctx, struct tnl_pipeline_stage *stage)
       }
    }
 
-#if 1
+#if 0
    for (i = 0; i < VB->Count; i++) {
       printf("Out %d: %f %f %f %f %f %f %f %f\n", i,
             VEC_ELT(VB->ClipPtr, GLfloat, i)[0],
index 6b85e2321581879c250b928da850fdffe051dc2a..83be1d2d9f98a9a225c3fde48a63e8107a8b011c 100644 (file)
@@ -66,7 +66,7 @@
  * EDI
  */
 
-
+#define DISASSEM 0
 
 #define FAIL                                                           \
 do {                                                                   \
@@ -803,8 +803,10 @@ static GLboolean build_vertex_program( struct compilation *cp )
       union instruction inst = cp->m->instructions[j];  
       cp->insn_counter = j+1;  /* avoid zero */
       
-      _mesa_printf("%p: ", cp->func.csr); 
-      _tnl_disassem_vba_insn( inst );
+      if (DISASSEM) {
+        _mesa_printf("%p: ", cp->func.csr); 
+        _tnl_disassem_vba_insn( inst );
+      }
       cp->func.fn = NULL;
 
       if (!emit_func[inst.alu.opcode]( cp, inst )) {