Live data from Hacker News

Making graphics in 4 kilobytes (2008) [pdf]

iquilezles.org

1–10 of 18 posts

Re: Making graphics in 4 kilobytes (2008) [pdf]

#4
post #3

The eye was pretty interesting. These primitives, what are they? smoothstep() is apparently "Hermite interpolation" but colsca() - col-scale? collerp - col-linear interpolation?

found an implementation here. http://fingswotidun.com/code/index.php/Eye

Don't know if it's the same one but it all it seems to do is scaling and clamping.

Re: Making graphics in 4 kilobytes (2008) [pdf]

#8
I've loved these kinds of demos since I first discovered them. For those not in the know, this is _the_ site for finding them: http://www.pouet.net/

Though it didn't end up involving any procedural generation, I was tasked with cramming an OSD into an FPGA that was already using the majority of its resources. The device was processing an HDMI video stream and needed to display a menu and various other information to the user, for control and settings. All this at up to 1080p60. I ended up using about 16 KB of on-chip SRAM, if I recall correctly, and designed an old-school inspired GPU ala NES/SNES, with perfect alpha blending even! It was palette based, of course, and the memory is used to store sprites and a "command buffer". While pixels are flying through the GPU it reads the command buffer sequentially, which instructs it which sprites to draw in-order. Space between sprites is handled by rendering a fully transparent 1x1 sprite, repeated however many times. I was able to draw the framing for the menus and displays with fancy drop-shadows, logos, text, etc. It worked quite well! The only major limitation was my inability to handle exotic languages like Chinese, simply because there wasn't enough room for all the necessary sprites.

While the FPGA handled real-time, on-the-fly rendering, the on-board MCU was the one uploading sprites and configuring the command buffer over SPI. I had to build up all the software to not only drive the GPU but also handle the OSD. If you think coding up GUIs on a desktop is bad, just wait until you try to design a GUI system completely from scratch on an MCU!

I can only imagine what demoscene artists would be able to accomplish if they could design their own GPUs on an FPGA!

Re: Making graphics in 4 kilobytes (2008) [pdf]

#9
post #4
post #3

The eye was pretty interesting. These primitives, what are they? smoothstep() is apparently "Hermite interpolation" but colsca() - col-scale? collerp - col-linear interpolation?

found an implementation here. http://fingswotidun.com/code/index.php/Eye Don't know if it's the same one but it all it seems to do is scaling and clamping.

I did that. It's a fairly direct conversion from the paper.

I'm guessing SmoothStep got converted for size or performance seasons, but it doesn't really do the same thing.

One of the tricky bits of procedural generation like this is that bugs get entrenched easily, because 'fixing' things can dramatically change the generated result. Perhaps that is what happened in this instance.

Post reply on HN