🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

When did immediate mode take over the web?

Started by
11 comments, last by Kylotan 6 years, 6 months ago
6 hours ago, RivieraKid said:

The technology just simply isn't there to do this.

Taking a tangent for a second, the technology absolutely does exist. It's just not being applied like that.

Gaikai/OnLive/PlaystationNow have been around for years, and all allow streaming video games rendered in the cloud to be played on hardware that lacks significant GPU power. I used to play AAA games on a woefully underpowered 11" MacBook Air back when OnLive still existed.

Folks are even homebrewing this sort of thing on AWS GPU instances...

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

Advertisement

I would strongly disagree that React is immediate mode UI. Sure, it's UI implemented as a function. But each of those functions relates to a single visual component, and each is (almost always) declaratively described using JSX. The render function is stateless, but the components are not - you put your state in the 'props', and display it using a pretty standard data binding method, and respond to user input via the usual event-driven model, often hooked to a method that exists inside the component. 

This topic is closed to new replies.

Advertisement