I\'ve been struggling to draw a 2D image from jpg/png files using openGL ES 2.0 for Android. Everywhere I look the tutorials are for texturing 3D images so its been rough figuri
"v_TexCoordinate = a_TexCoordinate" +
should have been
"v_TexCoordinate = a_TexCoordinate;" +
Apparently I forgot a semi-colon, now I realize just how much I rely on my IDE's to tell me when I mess up stupid things haha.