Gasp flickers like crazy
Bug #1819755 reported by
Jeffrey Elkner
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
GASP Core |
Fix Released
|
High
|
Marco Sirabella |
Bug Description
When I run the following program, many of the "faces" flicker very noticably:
from gasp import *
def draw_face(x, y):
# Face
Circle((x, y), 40)
# Nose
Line((x-10, y-10), (x, y+10))
Line((x-10, y-10), (x+10, y-10))
# Eyes
Circle((x-15, y+10), 5)
Circle((x+15, y+10), 5)
# Mouth
Arc((x, y), 30, 225, 315)
begin_graphics(
for y in range(40, 761, 80):
for x in range(40, 1161, 80):
update_
end_graphics()
Changed in gasp-core: | |
assignee: | nobody → Marco Sirabella (mjsir911) |
importance: | Undecided → High |
Changed in gasp-core: | |
status: | New → Fix Released |
To post a comment you must log in.