Nomenclature/Direct State Access
The Nomenclature for Direct State Access is a bit more consistent than the non-DSA naming. As with non-DSA functions, they follow the standard Verb-Object-Command syntax. However, there were several non-DSA functions that affected some object's state without naming the Object type in its function. In the case of DSA, all DSA functions consistently use this nomenclature (even if it makes the function name unwieldy).
The difference is that DSA functions use a different Object name from the non-DSA functions. What is inconsistent is that some DSA functions will prefix the Object name with Named, while others do not. Fortunately, all functions that act on an object will consistently use the same Object name:
OpenGL Object Type | Context Object Name | DSA Object Name |
---|---|---|
Texture Object | "Tex" | "Texture" |
Framebuffer Object | "Framebuffer" | "NamedFramebuffer" |
Buffer Object | "Buffer" | "NamedBuffer" |
Transform Feedback Object | "TransformFeedback"1 | "TransformFeedback" |
Vertex Array Object | N/A2 | "VertexArray" |
Sampler Object | N/A3 | "Sampler" |
Query Object | N/A3 | "Query" |
- 1: Transform feedback objects have a lot of functions that use TF objects in rendering operations. But the actual state in them consists only of the buffers attached to GL_TRANSFORM_FEEDBACK_BUFFER via glBindBufferRange, as well as a captured primitive count. As such, while they had a formal Object name, it was only used for functions that used the object for feedback operations rather than state-accessing functions. So the existing name could be appropriated for DSA functions (to attach buffers to the feedback object).
- 2: The functions that manipulate this object were so inconsistently named that there was never really a consistent object name for them.
- 3: These object types already used DSA-style functions.
There are some functions which were introduced before full DSA that work in a DSA style, but use the old Object name. For example, glClearTexImage takes the texture object to be cleared as a parameter, rather than acting on context state.