I'm calling glTexSubImage2D. If my pixel format is GL_RGBA, then are the pixel types GL_UNSIGNED_BYTE and GL_UNSIGNED_INT_8_8_8_8 fully equivalent?
Also, are these two pairs equivalent?
Format = GL_RGBA, Type = GL_UNSIGNED_INT_8_8_8_8Format = GL_BGRA, Type = GL_UNSIGNED_INT_8_8_8_8_REV
I've tried reading the OpenGL spec and the GL_EXT_packed_pixels spec, but honestly I can't make head or tail of them.