Reputation: 22270
I'm going through some old code that uses glaux everywhere.
Well, I'm required to use glut in my project, and I'm wondering if it has a structure for a rgb bitmap like glaux has.
Something that would allow me to replace this pointer declaration.
AUX_RGBImageRec *pBitmap;
Upvotes: 0
Views: 3407
Reputation: 56357
GLUT doesn't have any replacement for image loading. SDL with SDL_image has it.
Upvotes: 1