I am in the process of converting a old windows program to the sweet wxwindows GUI framework but I ran into this problem.
I have a buffer containing 32bit image data that is updated dynamically around 100 times per second. In the old Windows code I had the data stored in the Windows DIB format and called SetDIBitsToDevice to render it to the screen as fast as possible.
What would be the best solution for this under wxWindows?
2. Re: Fast dynamic image content display, how?
#2744
Posted by: 2003-10-16 02:09:34
Hi! Well, I'm not really sure, but you might want to have a look at wxMemoryDC and the Blit() function of wxDC. I remember that some time ago there was a discussion about images, DCs and speed on the wx mailing list. Maybe check the archives or post your question there.