Twitter updates
- @repi Sounds great, I guess that should also help to make the games more stable on PC. Wonder what perf difference you see, if any? 1 day ago
- @aras_p Happy birthday! The link you attached seems to be broken though. 2 days ago
Development
Graphics
Calendar
May 2012 M T W T F S S « Mar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Author Archives: Anteru
Canonical include files for frameworks & libraries
My research framework has gotten quite big over the years; the version my clients use at the moment comes with over 400 header files containing nearly 1000 classes. All of this is organized into several libraries (Core, Engine, Image, etc.) … Continue reading
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
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
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