SOLUTION FOUND

I finally found out where the problem was. Every texture will be automatically scaled up to a size of power of 2. I forget to calculate these differences into the new coordinates.

How can I display just a special area of a texture?

I am using the SpriteMethodTest demo from Google. http://code.google.com/p/apps-for-android/source/browse/trunk/SpriteMethodTest#SpriteMethodTest%2Fsrc%2Fcom%2Fandroid%2Fspritemethodtest

The grid which I can change looks like this:

float w = (float) (getTextureWidth());
float h = (float) (getTextureHeight());
g.set(0, 0,     0.0f,   0.0f,   0.0f,   0.0f,   1.0f, null);
g.set(1, 0,     w,  0.0f,   0.0f,   1.0f,   1.0f, null);
g.set(0, 1,     0.0f,   h,  0.0f,   0.0f,   0.0f, null);
g.set(1, 1,     w,  h,  0.0f,   1.0f,   0.0f, null);

This is like the result looks like: Result when all texture coordinates are regular

I can change the last 2 values (u,v) and the texture will look different:

float w = (float) (getTextureWidth());
float h = (float) (getTextureHeight());
g.set(0, 0,     0.0f,   0.0f,   0.0f,   **0.5f**,   1.0f, null);
g.set(1, 0,     w,  0.0f,   0.0f,   1.0f,   1.0f, null);
g.set(0, 1,     0.0f,   h,  0.0f,   **0.5f**,   0.0f, null);
g.set(1, 1,     w,  h,  0.0f,   1.0f,   0.0f, null);

And this is how the texture looks like when I have change 2 values: Result when two texture coordinates are irregular (set to 0.5 instead of 0.0)

link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.