Mesa (gallium-0.2): nv50: disable shader debug

Ben Skeggs darktama at kemper.freedesktop.org
Mon Jan 12 07:00:06 UTC 2009


Module: Mesa
Branch: gallium-0.2
Commit: b01d0077af9d93c582e5f53ebd358ac8148b22df
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b01d0077af9d93c582e5f53ebd358ac8148b22df

Author: Ben Skeggs <skeggsb at gmail.com>
Date:   Mon Jan 12 14:26:15 2009 +1000

nv50: disable shader debug

---

 src/gallium/drivers/nv50/nv50_program.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c
index d66e1d0..bc85ede 100644
--- a/src/gallium/drivers/nv50/nv50_program.c
+++ b/src/gallium/drivers/nv50/nv50_program.c
@@ -32,7 +32,7 @@
 #include "nv50_context.h"
 
 #define NV50_SU_MAX_TEMP 64
-#define NV50_PROGRAM_DUMP
+//#define NV50_PROGRAM_DUMP
 
 /* ARL - gallium craps itself on progs/vp/arl.txt
  *
@@ -1602,13 +1602,19 @@ nv50_program_validate_code(struct nv50_context *nv50, struct nv50_program *p)
 	if (!upload)
 		return;
 
+#ifdef NV50_PROGRAM_DUMP
 	NOUVEAU_ERR("-------\n");
 	up = ptr = MALLOC(p->exec_size * 4);
 	for (e = p->exec_head; e; e = e->next) {
 		NOUVEAU_ERR("0x%08x\n", e->inst[0]);
 		if (is_long(e))
 			NOUVEAU_ERR("0x%08x\n", e->inst[1]);
+	}
+
+#endif
 
+	up = ptr = MALLOC(p->exec_size * 4);
+	for (e = p->exec_head; e; e = e->next) {
 		*(ptr++) = e->inst[0];
 		if (is_long(e))
 			*(ptr++) = e->inst[1];




More information about the mesa-commit mailing list