Quote Originally Posted by Lowercase
Sorry, I never noticed ad since i'm using firefox and adblock plus. sorry for that

by the way, it's true i had problems with textures. C program uses glaux to load texture, I had to write another texture loader.

the fun fact is, I don't have any glaux.dll on my computer, and this C program is able to run without it I don't understand why ??
GLAux is probably statically linked in the C program, so it won't need glaux.dll. Another thing I picked up on the OpenGL wiki is this:

Quote Originally Posted by OpenGL Wiki
GLaux, do not use GLaux. It is 15 years old and considered deprecated
So rather use something like SDL for image loading.