Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a buffer containing a "raw" BGRA texture with one byte per color. The lines are in reversed order (the texture is upside down).

The BGRA buffer is all green (0, 255, 0, 255).

I need to convert that to RGBA and flip the textures lines. I tried this:

// bgra is an  unsigned char*

int width = 1366;
int height = 768;    

unsigned char* rgba = new unsigned char[width * height * 4];

for(int y = height - 1; y >= 0; y--)
{
    for(int x = 0; x < width; x++)
    {
        rgba[(x * y * 4)]     = bgra[(x * y * 4) + 2];
        rgba[(x * y * 4) + 1] = bgra[(x * y * 4) + 1];
        rgba[(x * y * 4) + 2] = bgra[(x * y * 4)];
        rgba[(x * y * 4) + 3] = bgra[(x * y * 4) + 3];
    }
}

But the result when rendered is not a full green screen, but this:

What might i be doing wrong here?

share|improve this question

1 Answer

up vote 5 down vote accepted

You're indexing wrong.

This is how it should be done:

rgba[(x + y * width) * 4]     = bgra[(x + y * width) * 4 + 2]
share|improve this answer
Thanks, my indexing was off. But, that was not my only problem. Question edited. – EClaesson Mar 7 at 4:51
The indexing was the problem and it was broken further down the code as well. Thanks. – EClaesson Mar 7 at 5:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.