English 中文(简体)
SDL.NET SDL_Flip() equivalent
原标题:
  • 时间:2011-07-28 17:49:21
  •  标签:
  • sdl
  • sdl.net

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

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

最佳回答

It s not called Flip, it s Update:

Video.Screen.Update();
问题回答

暂无回答




相关问题
Simulated time in a game loop using c++

I am building a 3d game from scratch in C++ using OpenGL and SDL on linux as a hobby and to learn more about this area of programming. Wondering about the best way to simulate time while the game is ...

Crash when utilising a std:map

In my SDL program, I am using a map construct to simulate an "infinite" array of objects within a certain class. The code manages to compile fine, but when I run the program, as soon as one of the ...

C lib with Python bindings where both want to render

I m sketching on some fluid dynamics in Python. After a while, I m looking for a bit more speed, so I rewrote the actual logic in C and put up some Python bindings (using SWIG). My problem now is ...

SDL_Event.type always empty after polling

I have a general function that is supposed to handle any event in the SDL event queue. So far, the function looks like this: int eventhandler(void* args){ cout << "Eventhandler started. "; ...

easiest way to port an SDL-1.2-based game to iPhone

I have a SDL-1.2 based game and I want to port this to the iPhone so I want to ask about the easiest way. I am working on MacOSX and have already the iPhone SDK by Apple (so I guess the iPhone ...

热门标签