https://i.stack.imgur.com/bRXcy.png
This image is a 78*24 image of the alphabet, with each letter in a 6*6, so 52 total squares.
Wouldn't using glTexCoord to get a single letter out of that image get kind of tedious?
GL11.glTexCoord2f(0,0);
GL11.glTexCoord2f(0.0769f,0);
GL11.glTexCoord2f(0.0769f,0.25f);
GL11.glTexCoord2f(0,0.25f);
Since 1/13(0.0769) of 78 is 6 and 1/4(0.25) of 24 is 6, is this kind of what I'm looking to do, to single out a letter? I'm just making sure this is the way to go.