glodNewGroup - create a new group used to adapt one or more GLOD objects
void glodNewGroup(GLuint name)
- name
-
The name of the group
Creates a new group with a specified name. A group is created with no
members and an undefined adapatation state. Therefore, you should set
the group adaptation state using glodGroupParameter()
to an
acceptable mode before calling glodAdaptGroup()
.
Groups are created automatically when you call glodNewObject()
, so
technically speaking, this call is merely a formality.
- GLOD_INVALID_NAME is generated if a group of the specified name is already in use.
-