andandandand
andandandand

Reputation: 22270

GLUT substitute for AUX_RGBImageRec?

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

Answers (2)

genpfault
genpfault

Reputation: 52085

Might give SOIL a whirl.

Upvotes: 2

Dr. Snoopy
Dr. Snoopy

Reputation: 56357

GLUT doesn't have any replacement for image loading. SDL with SDL_image has it.

Upvotes: 1

Related Questions