summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/indices/u_unfilled_gen.py
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-04-27 19:36:42 +0100
committerKeith Whitwell <keithw@vmware.com>2009-04-28 18:15:16 +0100
commitb91e5f8e197793feac016242140bf489bd16071c (patch)
tree4074044f1c40a54be782fb3cdc79eb8cfd8b944d /src/gallium/auxiliary/indices/u_unfilled_gen.py
parentafd16512bc354cf1a7220cb9bf3ce445503c7af4 (diff)
util/indices: remove debug prints
Diffstat (limited to 'src/gallium/auxiliary/indices/u_unfilled_gen.py')
-rw-r--r--src/gallium/auxiliary/indices/u_unfilled_gen.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/indices/u_unfilled_gen.py b/src/gallium/auxiliary/indices/u_unfilled_gen.py
index d0344fe313..36896ce605 100644
--- a/src/gallium/auxiliary/indices/u_unfilled_gen.py
+++ b/src/gallium/auxiliary/indices/u_unfilled_gen.py
@@ -99,7 +99,6 @@ def vert( intype, outtype, v0 ):
return '(' + outtype + ')in[' + v0 + ']'
def line( intype, outtype, ptr, v0, v1 ):
- print ' debug_printf(" line %d %d\\n", (int)' + v0 + ', (int)' + v1 + ');'
print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'