Ticket #10038 (closed defect: fixed)
display panel content meltdown on pygame.display.set_mode
| Reported by: | Quozl | Owned by: | cjb |
|---|---|---|---|
| Priority: | low | Milestone: | 10.1.2 |
| Component: | x window system | Version: | Development build as of this date |
| Keywords: | Cc: | bernie, pgf | |
| Action Needed: | no action | Verified: | no |
| Deployments affected: | Blocked By: | ||
| Blocking: |
Description
on XO-1.5, the display stops being driven if resolution is changed by a user program. the content melts down.
the following reproducer demonstrates the symptom:
#!/usr/bin/python import pygame pygame.init() print pygame.display.Info() pygame.display.set_mode((1024, 768), pygame.FULLSCREEN) pygame.time.wait(3000) # three seconds print pygame.display.Info() pygame.display.quit() pygame.quit()
the code effectively calls XF86VidModeSwitchToMode().
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


