0

c_overviewer.render_loop now works with normal render mode

This commit is contained in:
Aaron Griffith
2012-01-01 23:02:30 -05:00
parent 55e83e50da
commit a69a78f412
6 changed files with 112 additions and 55 deletions

View File

@@ -365,8 +365,9 @@ def generate_facemasks():
left = Image.new("L", (24,24), 0)
whole = Image.new("L", (24,24), 0)
toppart = textures.transform_image_top(white)
leftpart = textures.transform_image_side(white)
tex = textures.Textures()
toppart = tex.transform_image_top(white)
leftpart = tex.transform_image_side(white)
# using the real PIL paste here (not alpha_over) because there is
# no alpha channel (and it's mode "L")