realtime?

Started by
4 comments, last by branhield 21 years, 7 months ago
what do people mean when they talk about realtime-rendering/shadowing etc. ?
Advertisement
The exact definition of real-time varies. Most often in game programming it means "able to be interactive." Generally a framerate of 30 FPS (frames-per-second) is considered interactive, because it''s close to the refresh rate of the human eye, allowing you to notice change occuring each frame.

Not the best explanation. If you need additinal clarification, just ask.

Peace,
ZE.



//email me.//zealouselixir software.//msdn.//n00biez.//
miscellaneous links

[twitter]warrenm[/twitter]

for things like rendering and shadowning, it''s usualy used to mean it can be changed on the fly, like a moving light can cast shadows onto a wall, as opposed to the shadows being pre-computed, and never changing. like ZealousElixir said though, the exact definition varies

___________________
-Nicholas Anton
-www.geocities.com/nickanton7/

REFUSE TO BUY WINDOWS XP! STAY WITH 98se!! MICROSOFT CUTTING SUPPORT FOR OLDER PROGRAMS IS A VERY BAD THING.
Yeah, good clarification.

[twitter]warrenm[/twitter]

Real time rendering means that the scene is drawn as you see it. This means that things can easily be moved around and then the next time the scene is drawn, everything will be where you put it. On the other hand, pre-rendered scenes are drawn in advance and the images produced are stored on disk. Then when you need them, the images are simply copied to video memory. While this means that you lack the dynamic nature of real time rendering, this does mean that the length of time the render takes is insignificant. This means that you could show very high quality or complex images that would be just too slow under a real time system.
ok i get it, thx for all replies

This topic is closed to new replies.

Advertisement