<<< Mipmap example | Index | Texturing summary >>> |
Have BMP file extension
Common, and usually aren't compressed
Contain header/meta info followed by pixel data
Stored in "BGR" format
Bottom row of data comes first
Are easy to work with -- many sample loader funtions available online
When loaded into memory the actual data is
GLubyte image[ width ][ height ][ 3 ];
<<< Mipmap example | Index | Texturing summary >>> |