Reverse Color in Texture: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
SteveBaker (talk | contribs) m Reverse Color in Textur moved to Reverse Color in Texture |
(No difference)
|
Revision as of 02:58, 30 June 2006
Your texture image has the reverse byte ordering of what OpenGL is expecting. One way to handle this is to swap bytes within your code before passing the data to OpenGL.
Under OpenGL 1.2, you may specify GL_BGR or GL_BGRA as the "format" parameter to glDrawPixels(), glGetTexImage(), glReadPixels(), glTexImage1D(), glTexImage2D(), and glTexImage3D(). In previous versions of OpenGL, this functionality might be available in the form of the EXT_bgra extension (using GL_BGR_EXT and GL_BGRA_EXT as the "format" parameter).