Trucs en vrac from Twitter
OpenGL Versions, Features Overview
Programming – Misc Links
- Petite librairie pour le rendu de texte en mode bitmap avec OpenGL 3+ (core profile): VSFL – Very Simple Font Library
- Nouveau language de scripting. A tester un de ces quatres (dans une autre vie surtout!) dans GeeXLab: Cyrus Script
OpenCL Platforms Names
What your email address says about your computer skills
How to UnRAR files on Ubuntu
Linux-Ubuntu comes with native zip file support (zip and unzip). Good. Unfortunately, uncompressing RAR files (or unrar-ing files) is not handled by Ubuntu. But it’s not a big problem: just install the unrar package and you’re ok. To install unrar, start a terminal and type the following command:
Read the rest of this entry »
Impression 3D
Screen Space Ambient Occlusion (SSAO) Tests
offsetof macro in C
I just discovered this macro available in C: offsetof. Here is an simple example:
struct { char a; int b; char c; } example; struct example s1; unsigned int offset; offset = (unsigned int)(&(((example *)(0))->b));
Thanks to offsetof (in the header stddef.h), the last line can be rewritten in:
unsigned int offset; offset = offsetof(example, b);







