android - Texture Image Got Mirrored In OpenGl -
i new opengl.iam trying show image texture drawable.image show got mirrored. used vetices , texture cords follows.help me solve problem
float[] vertices = new float[] { -.5f, .5f, 0, .5f, .5f, 0, .5f, -.5f, 0, -.5f, -.5f, 0 }; float[] texturecoords = new float[] { 1, 0, 0, 0, 0, 1, 1, 1 };
Comments
Post a Comment