Click here to Skip to main content
Click here to Skip to main content

OpenGL ES: Texture2D and the Power of Two

By , 19 Jul 2009
 

Introduction

As most of you have figured out, OpenGL ES doesn't like textures to be non-power of two, and I really didn't want to have to force all of my textures to be powers of two before loading them into my game. This presented me with a problem that had to be solved in-code.

To really understand texture mapping in OpenGL, I had to do a lot of research. To be fair, I still don't fully understand it, although there are a few articles that do a really great job at explaining things. One of those articles is titled "OpenGL ES from the ground up" and can be located at http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html. Look up chapter 6 on Texture Mapping.

The problem that I was faced with, is that only powers of two can be used inside OpenGL ES, so how do you convert our texture to a power of two if it was loaded in as a 40 x 40 texture (for example)? There are several ways of doing just this, but I settled with the way Apple did it for their Texture objects, and moulded that to fit my own code. They came up with the following to convert the width and height:

//Adjust the width and height to be a power of two.
if(( _width != 1) && ( _width & (_width - 1) )
{
    i = 1;
    while( (sizeToFit ? 2 * i : i) < _width)
        i *= 2;
    _width = i;
} 

if(( _height != 1) && ( _height & (_height - 1) )
{
    i = 1;
    while( (sizeToFit ? 2 * i : i) < _height)
        i *= 2;
    _height = i; 
}

The first portion of the code will convert the width to a power of two, then the height. Since the texture will be stretched, and never shrunk, Apple had to figure out a way to shrink the texture if it became longer than the max texture size defined by kMaxTextureSize = 1024. The following code will do just that:

//      scale down an image greater than the max texture size
while((_width > kMaxTextureSize) || (_height > kMaxTextureSize))
{
    _width /= 2;
    _height /= 2;
    transform = CGAffineTransformScale(transform, 0.5, 0.5);
    imageSize.x *= 0.5;
    imageSize.y *= 0.5; 
}

The "transform" is nothing more than a CGAffineTransform (Core Graphics). So, now that you've glanced over the code, you remember in the article where Jeff was talking about S and T coordinates? We'll take care of those like this:

_maxS = imageSize.x / (float)_width;
_maxT = imageSize.y / (float)_height;

This will give us a number between 0 and 1 which can be used in our textureCoordinates[] for drawing. This should only render the portion of the texture that has the data we wish to make it to the screen, and not the padding we added to ensure it was a power of two.

While I am still learning OpenGL, I figured that a lot of people would be interested in the following solution... especially if you had done what I had, and thrown out the Apples Texture2D class while working on iPhone OpenGL applications. The full source code to the Texture2D, TextureManager, and any other class used by my C++ iPhone Engine can be found at http://code.google.com/p/djinnengine.

Hope this was informative! If anyone has any further information that would be useful, feel free to comment!

Happy coding everyone!

History

  • 19th July, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Craig Giles
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionWhy not using Texture atlas instead?memberSimone Serponi11 Oct '09 - 23:11 
GeneralFaster way to find next power of twomemberJeanLuc_19 Jul '09 - 12:18 
GeneralRe: Faster way to find next power of twomemberCraig Giles19 Jul '09 - 16:47 
GeneralRe: Faster way to find next power of twomembercmk19 Jul '09 - 18:33 
GeneralRe: Faster way to find next power of twomemberyarp19 Jul '09 - 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 19 Jul 2009
Article Copyright 2009 by Craig Giles
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid