Flash from the past - captured IRIX 5.3 wallpaper "Twilight"

GIJoe wrote: ok - but isn't this still included with irix 6.5 as a wallpaper? i thought i've seen it a few years ago, same with the rotating cube, cpu eater or what it was called.
cheg wrote: IRIX 5.3 wallpaper "Twilight"
Looks like hamei will no longer need a weatherman to know which way the wind blows.toxygen wrote: http://www.washingtonpost.com/local/chinese-hack-us-weather-systems-satellite-network/2014/11/12/bef1206a-68e9-11e4-b053-65cea7903f2e_story.html
toxygen wrote: :) check 0:33 in the video in the article http://www.washingtonpost.com/local/chi ... story.html
vishnu wrote: Presumably it's a Windows 8 take on the original 4DWm classic, source code from 1992 attached for everyone's viewing pleasure.![]()
vishnu wrote:toxygen wrote: :) check 0:33 in the video in the article http://www.washingtonpost.com/local/chi ... story.html
How the heck did you spot that in the 1 second it was on the screen?![]()
vishnu wrote: Presumably it's a Windows 8 take on the original 4DWm classic, source code from 1992 attached for everyone's viewing pleasure.![]()
vishnu wrote: source code from 1992 attached for everyone's viewing pleasure
foetz wrote: they had stdbool.h in 1992![]()
jan-jaap wrote:foetz wrote: they had stdbool.h in 1992![]()
Nope.
But I have a copy of the old info-iris archive on my FTP server: ftp://ftp.jurassic.nl/pub/info-iris/twilight.c
Dated 1992![]()
Code: Select all
~$ diff Downloads/twilight.c src/c/twilight.c
28,30c28,29
<
< #include <gl/gl.h>
< #include <gl/device.h>
---
> #include <stdbool.h>
> #include <GL/gl.h>
32d30
<
34c32
< void draw_background(float x, float y, Boolean rgb_mode);
---
> void draw_background(float x, float y, bool rgb_mode);
53c51
< main()
---
> int main()
56,57c54,55
< Boolean redraw_needed = FALSE;
< Boolean rgb_mode;
---
> bool redraw_needed = 0;
> bool rgb_mode;
94a93
> return 0;