pygame_sdl2
pygame_sdl2 copied to clipboard
Reimplementation of portions of the pygame API using SDL2.
Hello, devs I get "segmentation fault (core dumped)" while executing this script: ```python import pygame_sdl2 ; pygame_sdl2.import_as_pygame() import pygame pygame.init() font = pygame.font.Font(None, 20) pygame.quit() # segfault ``` No segmentation...
Honestly, after this was rejected as the future of Pygame, I've just been working on pygame_sdl2 to support Ren'Py. Do people want me to add them to the project and...
My program runs extremely slow
I've spent some time poking at making a usable windows .exe file of my pygame_sdl2 project with PyInstaller. After a fair bit of fiddling around and learning the ropes I've...
I have had the same problem on two linux boxes (Debian Buster and Ubuntu 16.04) with a clone of master downloaded about 2 weeks ago following the install instructions in...
I use encryptor to protect my images, so i store it like encrypted strings and can't create images from string http://www.pygame.org/docs/ref/image.html#pygame.image.tostring http://www.pygame.org/docs/ref/image.html#pygame.image.fromstring
On my version on windows, the python.exe of my virtualenv was located in the Script folder, thus looking for cython in Scripts would look into Scripts/Scripts/ and not finding cython.exe...
When I tried installing pygame_sdl2 to my computer, this error keeps showing up: `C:\Python27\pygame_sdl2>python setup.py install` `pygame_sdl2.error is out of date.` `Traceback (most recent call last):` `File "setup.py", line 110,...
Minimum non-working example: ``` import pygame_sdl2 pygame_sdl2.init() pygame_sdl2.display.init() # Make a window test_window = pygame_sdl2.display.set_mode((500, 500)) test_window.fill((0, 0, 0)) # Colors white = (255, 255, 255) red = (255, 0,...