Tagged Questions
6
votes
3answers
357 views
Why not use GDI to repeatedly fill a window with RGB data from an array?
This is a follow-up to this question. I'm currently writing a simple game and am looking for the fastest way to (repeatedly) display an array of RGB data in a Win32 window, without flickering or other ...
4
votes
4answers
2k views
“Exclusive” DirectDraw palette isn't actually exclusive
We're maintaining an old video game that uses a full-screen 256-color graphics mode with DirectDraw. The problem is, some applications running in the background sometimes try to change the system ...
1
vote
1answer
91 views
Target most Windows versions for a 2D game?
If one were to code a game for most versions of Windows, which API should be used?
I know DirectDraw works from NT4 and up (although DirectDraw is emulated on NT4 with GDI). However, I am told ...
0
votes
4answers
221 views
What's the fastest way to repeatedly fill a window with RGB data from an array?
I'm currently writing a simple game. My graphics code runs once per frame (approximately 30 times per second), and writes RGB data to an array with 640 * 480 = 307200 entries.
I have created a Win32 ...