Module: Mesa Branch: master Commit: 84e784665aa5b64c11538e90f0ff1482899a1965 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=84e784665aa5b64c11538e90f0ff1482899a1965
Author: José Fonseca <jfons...@vmware.com> Date: Wed Apr 8 16:25:29 2009 +0100 python/retrace: Allow to specify the range of calls of interest. --- .../state_trackers/python/retrace/interpreter.py | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/gallium/state_trackers/python/retrace/interpreter.py b/src/gallium/state_trackers/python/retrace/interpreter.py index 7089371..0f1c560 100755 --- a/src/gallium/state_trackers/python/retrace/interpreter.py +++ b/src/gallium/state_trackers/python/retrace/interpreter.py @@ -627,6 +627,8 @@ class Interpreter(parser.TraceDumper): self.interpret_call(call) def handle_call(self, call): + if self.options.stop and call.no >= self.options.stop: + sys.exit(0) if (call.klass, call.method) in self.ignore_calls: return @@ -660,6 +662,9 @@ class Interpreter(parser.TraceDumper): return self.options.verbosity >= level def present(self, surface, description): + if self.call_no < self.options.start: + return + if self.options.images: filename = '%s_%04u.png' % (description, self.call_no) save_image(filename, surface) @@ -676,6 +681,8 @@ class Main(parser.Main): optparser.add_option("-v", "--verbose", action="count", dest="verbosity", default=1, help="increase verbosity level") optparser.add_option("-i", "--images", action="store_true", dest="images", default=False, help="save images instead of showing them") optparser.add_option("-s", "--step", action="store_true", dest="step", default=False, help="step trhough every draw") + optparser.add_option("-f", "--from", action="store", type="int", dest="start", default=0, help="from call no") + optparser.add_option("-t", "--to", action="store", type="int", dest="stop", default=0, help="until call no") return optparser def process_arg(self, stream, options): _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit