> Lessons 1 through 12 work... You see correct texture ? (like nehe screenshot). I guess you have done this with lastest cvs checkout.
For warning message about stencil this is normal, simply means that no one have found the place to enable it. Same for others functionalities. > Any of the ones I haven't mentioned I was either unable to find, or > unable to get to compile :-) (Lessons 35 & 26, for example, wouldn't > compile without some modifications which I just haven't messed with yet). The lesson26 provided on nehe is broken, use the image.h i attach to compile it. For lesson35 you need avifile (don't know where to get it) anyway lesson35 doesn't use, if i remember well, any special rendering function. Only simple opengl function to update the texture using the avi file. best, Jerome Glisse
#ifndef __IMAGE_H__ #define __IMAGE_H__ #ifdef __cplusplus extern "C" { #endif typedef struct { unsigned short imagic; unsigned short type; unsigned short dim; unsigned short sizeX, sizeY, sizeZ; char name[128]; unsigned char *data; } IMAGE; IMAGE *ImageLoad(char *); #ifdef __cplusplus } #endif #endif /* !__IMAGE_H__! */