OSDN Git Service

python/retrace: Reconstruct blend state from binary blobs.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 15 Feb 2010 00:25:43 +0000 (00:25 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Mon, 15 Feb 2010 00:25:43 +0000 (00:25 +0000)
progs/gallium/python/retrace/interpreter.py

index a34122e..2db71a2 100755 (executable)
@@ -376,6 +376,9 @@ class Context(Object):
         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):