Differences and relationship between glActiveTexture and glBindTexture
All About OpenGL Objects The standard model for OpenGL objects is as follows. Objects have state. Think of them as a struct. So you might have an object defined like this: struct Object { int count; float opacity; char *name; }; The object has certain values stored in it and it has state. OpenGL objects … Read more