In
OpenGL, it is necessary to reserve an identifier (ID) for each texture.
- The
texture ID is simply an unsigned integer
- One
image per texture ID
The
function
glGenTextures() will
request
n texture ids and return those
values back to you as
texIds.
glGenTextures(n,
*texIds);