diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-08-19 17:10:03 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-10-25 11:03:56 -0400 |
commit | 7b09710392d35fb55b52031d447a542d99fc6b4b (patch) | |
tree | 270eb927ee8c52ceeb99926ebf4843704775a610 /dimension/client.py.in | |
parent | 200c86b91ea7063d35be3bffc11c5da53c054653 (diff) | |
download | dimension-7b09710392d35fb55b52031d447a542d99fc6b4b.tar.xz |
Modularize the libdimension codebase.
Diffstat (limited to 'dimension/client.py.in')
-rw-r--r-- | dimension/client.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dimension/client.py.in b/dimension/client.py.in index 2b6b084..5111a9c 100644 --- a/dimension/client.py.in +++ b/dimension/client.py.in @@ -152,7 +152,7 @@ def main(): scene.adc_bailout = float(args.adc_bailout) # Ray-trace the scene - with scene.ray_trace_async() as future: + with scene.render_async() as future: bar = None if not args.quiet: if scene.nthreads == 1: |