summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-04-08 16:25:29 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-04-08 16:26:06 +0100
commit84e784665aa5b64c11538e90f0ff1482899a1965 (patch)
treed6908fface4e54468b03f043faf07448c038fc91 /src/gallium/state_trackers
parente0e5d5014e84c10d3270afc9700a69c867ed282d (diff)
python/retrace: Allow to specify the range of calls of interest.
Diffstat (limited to 'src/gallium/state_trackers')
-rwxr-xr-xsrc/gallium/state_trackers/python/retrace/interpreter.py7
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 708937119f..0f1c56075a 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):