I'm a bit confused about using this function. I find a lot of posts where it is used like
glDeleteTextures(1, &textureName);
However, in Android the function doesn't accept an int as the second parameter but an IntBuffer.
What is an IntBuffer? How can I just pass a single texture name for deletion to this function?


