Commit 867e56cc authored by Guillaume Seguin's avatar Guillaume Seguin

Draw bed in immediate mode to workaround graphical corruption

parent 51e99c44
...@@ -169,7 +169,9 @@ class Platform(object): ...@@ -169,7 +169,9 @@ class Platform(object):
glPopMatrix() glPopMatrix()
def display(self, mode_2d=False): def display(self, mode_2d=False):
glCallList(self.display_list) # FIXME: using the list sometimes results in graphical corruptions
# glCallList(self.display_list)
self.draw()
class PrintHead(object): class PrintHead(object):
def __init__(self): def __init__(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment