swr/rast: gen_backends.py removal of commented debug prints
authorTim Rowley <timothy.o.rowley@intel.com>
Mon, 26 Jun 2017 17:59:28 +0000 (12:59 -0500)
committerTim Rowley <timothy.o.rowley@intel.com>
Fri, 30 Jun 2017 18:26:19 +0000 (13:26 -0500)
Reviewed-by: Bruce Cherniak <bruce.cherniak at intel.com>
src/gallium/drivers/swr/rasterizer/codegen/gen_backends.py

index 09f40fa9797a97e379da6b68a43cc41a4c77eae3..f65f7648c41a166251ff361d46cac28fdaa6f323 100644 (file)
@@ -87,7 +87,6 @@ def main(args=sys.argv[1:]):
 
         for fileNum in range(numFiles):
             filename = baseCppName % str(fileNum)
-            #print('Generating', filename)
             MakoTemplateWriter.to_file(
                 templateCpp,
                 baseCppName % str(fileNum),
@@ -99,7 +98,7 @@ def main(args=sys.argv[1:]):
     if args.cmake:
         templateCmake = os.path.join(thisDir, 'templates', 'gen_backend.cmake')
         cmakeFile = os.path.join(args.outdir, backend.cmakeFileName)
-        #print('Generating', cmakeFile)
+
         MakoTemplateWriter.to_file(
             templateCmake,
             cmakeFile,
@@ -108,8 +107,6 @@ def main(args=sys.argv[1:]):
             numFiles=numFiles,
             baseCppName='${RASTY_GEN_SRC_DIR}/backends/' + os.path.basename(baseCppName))
 
-    #print("Generated %d template instantiations in %d files" % (len(output_list), numFiles))
-
     return 0
 
 if __name__ == '__main__':