Charlie Hayden

Results 423 comments of Charlie Hayden

I didn't measure much of a performance difference at all, I guess this is more of a code quality PR 🙂 Maybe 1.5% better performance in some cases, but the...

> What version of Windows does the new version of the camera backend support? IIRC it was 8 or was it 8.1? It was unclear to me as I wrote...

> Hi. I would like to start contributing and this seems like a good first issue. Mind if I take it? Sure, go ahead. I feel like a shill because...

@KingOfIce77 This seems like it's an issue with SDL 2.0.16 -> 2.0.18. In the pygame info prompt, you should see pygame 2.1 running on SDL 2.0.16, and pygame 2.1.2 running...

@zoldalma999 Do you have the time and stuff to handle this one? It looks like we need to report upstream to SDL, but I feel bad doing it without a...

Reopening because I just directed someone here from the pygame mailing list. Which means (anecdotally) that people care about this functionality. So we should probably document it somehow, at least.

Did a small experiment. ```py import pygame def surf_str(surf): ret = f"" return ret a = pygame.Surface((50,25), depth=32) b = pygame.Surface((50,25), pygame.SRCALPHA) c = pygame.Surface((50,25), depth=32) c.set_colorkey("purple") d = pygame.Surface((50,25),...

Reprs are supposed to be valid python to create the object, but since that's not always possible, the `< >` in a repr denotes that an object cannot be recreated...

I don't believe this one is ready, I know you were talking on discord about changing this to just document the bug, rather than fixing it, which I would be...

This still needs tests and type hints.