Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm simply just trying to repeat the texture loaded using the iOS 5.1 GLKit improvements, that I've drawn onto a simple quad.

Here are the verticies and texCoords

#define ROAD_TEX_COORD_MAX  10

const Vertex roadVertices[] = 
{
    { {  90, -90, 0 } , { 1, 1, 1, 1 }, { ROAD_TEX_COORD_MAX, 0                  } }, // Bot R - 0
    { {  90,  90, 0 } , { 1, 1, 1, 1 }, { ROAD_TEX_COORD_MAX, ROAD_TEX_COORD_MAX } }, // Top R - 1
    { { -90,  90, 0 } , { 1, 1, 1, 1 }, { 0                 , ROAD_TEX_COORD_MAX } }, // Top L - 2
    { { -90, -90, 0 } , { 1, 1, 1, 1 }, { 0                 , 0                  } }  // Bot L - 3
};

const GLubyte roadIndices[] = 
{
    0, 1, 2,
    2, 3, 0
};

Here is the render routine:

- ( void ) render
{
    [self.baseEffect prepareToDraw];

    glBindBuffer( GL_ARRAY_BUFFER, vertexBuffer );
    glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, indexBuffer );

    glEnableVertexAttribArray( GLKVertexAttribPosition );        
    glVertexAttribPointer( GLKVertexAttribPosition, 3, GL_FLOAT, GL_FALSE, sizeof( Vertex ), ( const GLvoid * ) offsetof( Vertex, Position ) );
    glEnableVertexAttribArray( GLKVertexAttribColor );
    glVertexAttribPointer( GLKVertexAttribColor, 4, GL_FLOAT, GL_FALSE, sizeof( Vertex ), ( const GLvoid * ) offsetof( Vertex, Color ) );
    glEnableVertexAttribArray( GLKVertexAttribTexCoord0 ); 
    glVertexAttribPointer( GLKVertexAttribTexCoord0, 2, GL_FLOAT, GL_FALSE, sizeof( Vertex ), ( const GLvoid * ) offsetof( Vertex, TexCoord ) );

    glDrawElements( GL_TRIANGLES, sizeof( roadIndices ) / sizeof( roadIndices[0] ), GL_UNSIGNED_BYTE, 0 );
}

However, this is what I'm ending up with:

enter image description here

Now I've read that by default the EAGL setup using the REPEAT texture setting and you have to manually set it to CLAMP_TO_EDGE. However, that's not the case here - I'm not setting either of these (although I have tried to disable the CLAMP and enable the REPEAT and all that did was to make the quad black and no texture was visible.

share|improve this question
1  
Is your texture a power of two? If I recall correctly, you can't use anything other than CLAMP_TO_EDGE for non-power-of-two textures. – Brad Larson May 10 '12 at 16:56
Frak! I thought that was it and I'd marqueed the image wrong, but alas no, it's 2048x2048 JPG saved 'for Web' in PS CS5. PS, love your videos. – iOSProgrammingIsFun May 10 '12 at 21:20

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.