
I wouldn't think the issue would be byte alignment, seeing as the sheet is 512x1024 pixels, but what the hell do I know. Does anyone know what the hell I did to anger the gods? I can post whatever snippets of code anyone needs to see.
Moderator: Coders of Rage
Code: Select all
void IDTexture::Load(IDStr fn) {
IDSurface* tmp = IMG_Load(fn.c_str());
IDSurface* op;
IDSurface* ret;
int nOfColors;
GLenum format;
if (!tmp) {
std::cout << "IMG_Load Failed: " << SDL_GetError() << std::endl;
IdenCode = ID_IMG_FAILURE;
return;
}
if (tmp->format->BytesPerPixel == 3) {
op = SDL_DisplayFormat(tmp);
SDL_FreeSurface(tmp);
if (op != NULL) {
Uint32 ck = SDL_MapRGB(op->format, 0x00, 0x64, 0x00);
SDL_SetColorKey(op, SDL_SRCCOLORKEY, ck);
}
ret = op;
}
else {
ret = tmp;
}
filename = fn;
IdenCode = (SDL_GetTicks());
std::cout << filename << "'s Code: " << IdenCode << std::endl;
MakeTex(ret);
}
void IDTexture::MakeTex(IDSurface* s) {
glPixelStorei(GL_UNPACK_ALIGNMENT,4);
glGenTextures(1,&t);
glBindTexture(GL_TEXTURE_2D,t);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER, GL_NEAREST);
SDL_PixelFormat *fmt = s->format;
tWidth = (float)s->w;
tHeight = (float)s->h;
if (fmt->Amask) {
gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGBA, tWidth, tHeight, GL_RGBA, GL_UNSIGNED_BYTE, s->pixels);
}
else {
gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, tWidth, tHeight, GL_RGB, GL_UNSIGNED_BYTE, s->pixels);
}
SDL_FreeSurface(s);
IDSingleton<IDTextureManager>::GetSingletonPtr()->RegisterTexture(this);
}
Code: Select all
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER, GL_NEAREST);
if (fmt->Amask) { gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGBA, tWidth, tHeight, GL_RGBA, GL_UNSIGNED_BYTE, s->pixels); } else { gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, tWidth, tHeight, GL_RGB, GL_UNSIGNED_BYTE, s->pixels); }Try changing the second "GL_RGBA" to "GL_BGRA", and same for the "GL_RGB" -> "GL_BGR". I'm not sure if these are the right values, but I'm pretty sure that is what you need to change.
if (fmt->Amask) { gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGBA, tWidth, tHeight, GL_BGRA, GL_UNSIGNED_BYTE, s->pixels); } else { gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, tWidth, tHeight, GL_BGR, GL_UNSIGNED_BYTE, s->pixels); }
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Code: Select all
void IDTexture::Load(IDStr fn) {
IDSurface* tmp = IMG_Load(fn.c_str());
IDSurface* op;
IDSurface* ret;
if (!tmp) {
std::cout << "IMG_Load Failed: " << SDL_GetError() << std::endl;
IdenCode = ID_IMG_FAILURE;
return;
}
if (tmp->format->BytesPerPixel == 3) {
op = SDL_DisplayFormat(tmp);
SDL_FreeSurface(tmp);
if (op != NULL) {
Uint32 ck = SDL_MapRGB(op->format, 0x00, 0x64, 0x00);
SDL_SetColorKey(op, SDL_SRCCOLORKEY, ck);
}
ret = op;
}
else if (tmp->format->BytesPerPixel == 4) {
ret = tmp;
}
else {
std::cout << "Image load failed. Image's color depth is less than 3 bytes" << std::endl;
std::exit(EXIT_FAILURE);
}
filename = fn;
IdenCode = (SDL_GetTicks());
tWidth = ret->w;
tHeight = ret->h;
std::cout << filename << "'s Code: " << IdenCode << std::endl;
MakeTex(ret);
}
void IDTexture::MakeTex(IDSurface* s) {
int nOfColors;
GLenum format;
if ((s->w) & (s->w-1) != 0) {
std::cout << "WARNING: " << filename << " WIDTH is not a power of two" << std::endl;
}
if ((s->h) & (s->h-1) != 0) {
std::cout << "WARNING: " << filename << " HEIGHT is not a power of two" << std::endl;
}
nOfColors = s->format->BytesPerPixel;
if (nOfColors == 4) {
if (s->format->Rmask == 0x000000FF) {
format = GL_RGBA;
}
else {
format = GL_BGRA;
}
}
else if (nOfColors == 3) {
if (s->format->Rmask == 0x000000FF) {
format = GL_RGB;
}
else {
format == GL_BGR;
}
}
else {
std::cout << "ERROR: " << filename << " COLOR FORMAT not supported" << std::endl;
std::exit(EXIT_FAILURE);
}
glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
glGenTextures(1, &t);
glBindTexture(GL_TEXTURE_2D, t);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
SDL_PixelFormat *fmt = s->format;
tWidth = (float)s->w;
tHeight = (float)s->h;
if (fmt->Amask) {
gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGBA, tWidth, tHeight, format, GL_UNSIGNED_BYTE, s->pixels);
}
else {
gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, tWidth, tHeight, format, GL_UNSIGNED_BYTE, s->pixels);
}
SDL_FreeSurface(s);
IDSingleton<IDTextureManager>::GetSingletonPtr()->RegisterTexture(this);
}