Im new to OpenGL ES and wanted to create a bunch of triangles that would represent a grid of squares that i could map map tiles to. Is it possible to map separate textures on the same shape in OpenGL ES or would i have to make every square of the grid its own object? Thanks.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

For efficiency (read: to minimize texture binds) you probably want a texture atlas.

Bind your atlas texture, pass in your grid geometry with the proper texture coordinates, and you're good to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.