Thanks Kyro
Here's a link on how to install the Nvidia drivers if anyone else has this problem with an Nvidia adapter. I'm not sure yet if my installation has the Nvidia drivers or not yet.
One other thing it might be is that in Vista I'm using the quicktime codec for recording video. I'm not sure what codec is default in linux but it's not the quicktime codec. That could very well be the problem.
If one had written a pointer based graphics primitives library many many years ago what library would be best for using this pointer based graphics primitives cross platform.
Is there a way to write directly to memory on an opengl framebuffer and blit the frame buffer?
You know like
char far *framebuffer=0xA0000000;
ysize=800;
xsize=600;
putpixel( int x, int y,char c){
*(framebuffer + y *ysize+x)=c;
};
How do you do a simple putpixel in GEM without creating a point object through the render chain. Is there such a thing as putpixel , line , rect, etc for drawing on a pixmap?