SDL has an SDL_Flip() function for swapping screen buffers.

What is the equivalent in SDL.NET? There is no Screen.Flip() method.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

It's not called Flip, it's Update:

Video.Screen.Update();
link|improve this answer
For hardware that supports double-buffering, regular SDL distinguishes between SDL_Flip() and SDL_UpdateRect(). Are you saying that this distinction doesn't exist in SDL.NET? – Buggieboy Jul 28 '11 at 18:17
The distinction is made through overloading. Update() with no arguments is Flip(). Update(Rectangle) is UpdateRect(). – robbrit Jul 28 '11 at 18:20
Great! Thanks much! – Buggieboy Jul 28 '11 at 18:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.