commit | 21fe86b036451bb8352ed6aa0774d49f45fcd417 | [log] [tgz] |
---|---|---|
author | José Fonseca <jfonseca@vmware.com> | Mon Feb 15 00:25:43 2010 +0000 |
committer | José Fonseca <jfonseca@vmware.com> | Mon Feb 15 00:25:43 2010 +0000 |
tree | b3ac63f45abc82e5d23d96f48bb0cc55320f0adb | |
parent | e918519fe916da727eb051367f57b26dbd9ec870 [diff] [blame] |
python/retrace: Reconstruct blend state from binary blobs.
diff --git a/progs/gallium/python/retrace/interpreter.py b/progs/gallium/python/retrace/interpreter.py index a34122e..2db71a2 100755 --- a/progs/gallium/python/retrace/interpreter.py +++ b/progs/gallium/python/retrace/interpreter.py
@@ -376,6 +376,9 @@ pass def create_blend_state(self, state): + if isinstance(state, str): + state = gallium.Blend(state) + sys.stdout.write('\t%s\n' % state) return state def bind_blend_state(self, state):