Category Archives: Graphics

Everything related to computer graphics

Minimal setup screen space quads: No buffers/layouts required

A neat trick that Rory Driscoll  mentioned on Twitter is to use vertex IDs to generate screen space quads. I just recently came around to use that in my stuff, so here’s some ready-to-use code. The advantage of using the … Continue reading

Posted in Graphics | Tagged , , | 4 Comments

Using right/left-handed viewing systems with both DirectX & OpenGL

One problem many 3D graphics beginners run into is left/right-handed view matrices. In many cases, beginners get stuck with left-handed coordinate systems because they start with DirectX. Worse of all, some sources on the web claim that DirectX somehow mandates … Continue reading

Posted in Graphics | Tagged , , | Leave a comment

OpenCL for realtime rendering: What’s missing?

I’m a heavy user of OpenCL, relying on it exclusively for all my highly parallel computing needs. Recently, I started using OpenCL as a replacement for DirectCompute for a DirectX11 based renderer, and while it’s close, there is still a … Continue reading

Posted in Graphics, Programming | Tagged , | 9 Comments

Poor man’s animation framework

I had to produce an animation towards the end of the research project, and as usual, there was not enough time left for heavy-duty video editing work. Everything for the animation had to be done really fast and still produce … Continue reading

Posted in Graphics | Tagged , | 2 Comments