QT

TileDownloader

ago

I made a little tool which allows me to download tiles from bing maps and puts them together. tiledownloader   The next updates will add a proper thread for the stiching process which currently blocks the Ui till it's done. Anyways grab it from github. (more…)

GLSL

Post processing aa (fxaa)

ago

Why post processing antialiasing ? Because of two reasons. A good and fast post processing filter like fxaa or cmaa can achieve almost the same visual output like the usual multisampling counter part (msaa) and costs way less on the GPU because you dont need multiple samples per fragment/pixel! Another restriction is the rendering pipeline you might choose. A deferred renderer uses multiple framebuffers to achieve multiple different effects and using multiple samples on each of those framebuffers might have a really big impact on performance. Additionally it is practically impossible to use mxaa in a deferred renderer, because multisampling the position framebuffer results in wrong values around objects! Let's have a look on the code: (more…)

know-how

Gamma correction

ago

Gamma correction in openGL is very easily to achieve, but why do you need gamma correction? Let's keep it simple... First of all your textures you use as input for your openGL renderer are most likely in non linear color space. Your renderer on the other hand is probably calculating light under the assumption of linear color spaced color values in your loaded textures. So you might be working in two different color spaces. After your renderer is done it writes the colors to the screen, which uses non linear color space like your textures do! So what happens is, that your calculation might be visually wrong... So how can you solve this? The answer is very easy: (more…)

3D QT Engine

Skyboxes !!!

ago

Not much to say, skyboxes add a lot to a 3D scene! Here are two early screens. Not everything works like it should atm, but it’s close!

Android

Hwinfo android app almost done!

ago

My new android app is almost finished. It uses a little server for windows to get sensor information from your desktop computer to send it to a client android device. It’s still a bit rough at some edges, but it should be done soon! Here is how it looks like: