Missing GL_ARB_robustness

Started by
13 comments, last by 21st Century Moose 11 years, 6 months ago
To add to the ever growing ways in which OpenGL simply confuses the crap out of me, I have noticed when inspecting GL_EXTENSIONS and wglGetExtensionsStringARB that neither GL_ARB_robustness or WGL_ARB_create_context_robustness appear.

Doesn't ARB mean that they are part of the core api? I didn't think these sorts of things were optional.

Edit: Same goes for GL_ARB_debug_output and GL_ARB_cl_event. I'm starting to wonder what the phrase "OpenGL 4.2" support is even supposed to mean.

[AMD HD 5850 / Windows 8 / 3.3/4.2 Core Profile Forward Compat]
Advertisement
The ARB tag means that it's an ARB approved extension. Core functions have no extension tag at all. If it's not in the list, then is simply means it's not supported by the driver. I quickly checked around for extension support, and indeed it looks like AMD drivers doesn't provide that extension.

The ARB tag means that it's an ARB approved extension. Core functions have no extension tag at all. If it's not in the list, then is simply means it's not supported by the driver. I quickly checked around for extension support, and indeed it looks like AMD drivers doesn't provide that extension.


What do you mean?

e.g.

ARB_geometry_shader4

Notice the ARB? ARB_geometry_shader4 is supposedly a core part of OGL 3.2.
It is an extension, but it is an extension that has been promoted to the core API after it has been widely adopted and accepted. When it was promoted from extension to core function, it is entirely possible that functions change in the way they work, or that function names change (not counting dropping the ARB suffix), or that functions are removed entirely.

Lets say that there is an extension GL_ARB_foo which has a function named glFooARB. The extension is widely adopted and promoted to the core in version X of OpenGL. When promoted to the core, the extension suffix is dropped, and the function name becomes glFoo. At this point, a driver that doesn't provide support for OpenGL version X can choose to support GL_ARB_foo and must subsequently provide the function glFooARB. Once the driver implements OpenGL version X or later, it must now provide the function named glFoo since that is what's required for version X.

The driver can, if it chooses, provide an implementation for version X but not announce support for GL_ARB_foo. There is nothing wrong here, because GL_ARB_foo itself is not a part of the core API, but the function it provided was.

A driver is only required to provide functions for the version it claims to support and for the extensions listed in the extension string. If the extension string does not include GL_ARB_foo, then glFooARB is not provided. If version X is provided but GL_ARB_foo is not listed, then glFoo is available but not glFooARB, even though they may be the exact same functions.

If you look in the specification for ARB_geometry_shader4, you will see that all new functions has an ARB-suffix. This denotes that the function belongs to an ARB extension. If you look up the core API specification you will see that the corresponding functions does not have the ARB suffix. They are different functions as far as the specification goes.
So if I understand correctly, the way it works is that anyone can create an extension to OpenGL, which would then have the suffix EXT. If the Architecture Review Board likes a particular extension, they can promote it to a ARB suffix which is their way of showing support for it, in hopes most likely that more vendors will implement it. Then if all goes well, it (or something very similar) could be incorporated into the Core spec where it looses all suffixes.
In essence, yes, that's how it goes. Although the EXT-tag is an intermediate step between an individually proposed extension and a full ARB approved extension. Extensions typically start at a vendor-level with tags like NV, ATI, SGI, INTEL and AMD. The EXT-tag is for extensions that are supported by multiple vendors, and the ARB is the last step when it has more or less full vendor support. Extensions can also start as collaborations between vendors also and start directly at the EXT or even the ARB tag.

It typically goes both ways, but normally ARB approves common extensions and much less often approves them to promote them. And yes, anyone is free to write and submit an extension, but vendors are equally free to not implement it, and the ARB is also free to not allocate for example unique identifiers for any constants you define.

But note that, as was mentioning in the foo extension example, that each promotion, be it to another tag or to the core API, technically creates a completely new set of functions and symbols. It is not correct to check the extension string for GL_ARB_foo to verify that foo is supported and then proceed to use glFoo(), since the two are from different sets; one from the extension and one from the core, and the presence of one does not imply the presence of the other.

That is why you may not have seen the robustness extension even though version 4.3 was reported; version 4.3 does not imply the presence of the extension, but it does guarantee the presence of the core-promoted functions.
OK, I find that I am still having trouble understanding this.

For example, take this excerpt from Wikipedia about OpenGL 4.2:

Support for shaders with atomic counters and load/store/atomic read-modify-write operations to a single level of a texture.[/quote]

Does this mean that OpenGL 4.2 has guaranteed support for atomic counters, or does it just mean that starting with OpenGL 4.2 GL_ARB_shader_atomic_counters might be available on supporting hardware.

I'm also trying to figure out whether GL_ARB_robustness was made core in version 4.3. I have no interest in thing which only might be available.
Fair warning that this may confuse you even more.

In the past extensions worked much like Brother Bob described. In recent GL_VERSIONs many ARB extensions have worked slightly different; a new GL_VERSION is released accompanied by a slew of extensions which are not part of it but which serve the purpose of enabling exposure of as much functionality from that version on older hardware as possible. This is effectively the opposite of the previous mechanism; rather than gathering together a bunch of previously existing extensions and making a new GL_VERSION including them in core, these newer versions instead define a new spec and spawn new extensions out of it for use by older hardware.

So to answer your question: if a piece of functionality is included in GL4.3 then you're guaranteed availability of it on all GL4.3 hardware. You don't need to check the extension string; once you see 4.3 in the GL_VERSION string you can just load any required entry points (without the -ARB suffix) and start using it.

If the hardware is not GL4.3 capable then it may still be able to support the functionality, but as an extension. So query the extension string, see if GL_ARB_whatever is present, load the entry points, run any further checks you might need (these will be documented in the extension documentation) and use it.

Now to go down the rabbit hole.

In the past entry points and GLenums for all -ARB extensions had an ARB suffix on them; you can still find old VBO tutorials (for example) that use glGenBuffersARB, glBindBufferARB, GL_ARRAY_BUFFER_ARB, and so on. Once these extensions moved into core you would use the versions without the suffix which were normally (but not always - GL_ARB_shader_objects is a case in point) otherwise absolutely identical. If an extension is in core then drivers don't have to export the extension string any more, but as a general rule they always will in order to provide support for existing programs that may have used the extension version of a piece of functionality. So while that can be relied on, strictly speaking it shouldn't be.

These newer extensions don't always have an -ARB suffix present. See issue number 6 in the documentation for GL_ARB_vertex_array_object for the reasoning behind this: http://www.opengl.or...rray_object.txt.

If by now your head is spinning a little then I don't really blame you; it can be quite bewildering on first encounter for sure, so the best approach might be to dive in and start writing some code. That may be an easier way for you to get your head around the way these things interact and interoperate.

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.

Everything said by Brother Bob and Mhagain is correst, but maybe it sounds a little bit complicated (although it is not).
Let me try to make it clear...

1. Not anyone, but only hardware vendors can make extensions. It is logical since extensions are part of the drivers, and only driver writers know what their hardware supports.

2. If only one vendor supports some functionality, then appropriate prefix/suffix is used (NV, AMD,...) Sorry, Brother Bob, for repeating this.

3. If at least two vendors support some functionality, then EXT prefix/suffix is used (prefix for constants, suffix for functions).

4. If at least two vendors support some functionality, and the committee (ARB) decides it is something that should be a part of the core, the prefix/suffix changes to ARB.

5. Almost all ARB extensions become core functionality in the next revision of OpenGL. In the recent years, ARB extensions are published at the same time with the new release of the specification of the core, so ARB overnight becomes core. Core names lose ARB prefix/suffix.

6. If the driver supports particular ARB extension it also supports core equivalent (please correct me if I'm wrong; maybe there were some functions differ from the core version in the list of parameters), and vice versa. I saw a lot of advices on the forums claiming that ARB version of the function should not be used if the core version exists. Well, if the core version exists, both ARB and core functions point to the same entry. The function pointers are identical. Do you think driver writers would implement several version of the same function? Be aware, OpenGL is a mammoth with decades of adding new functions. Also, it doesn't matter how the function is named. You can use whatever name you want as long as you are accessing the right pointer. void glVertexAttrib1f (GLuint index, GLfloat x) has the same functionality as void Marry (GLuint index, GLfloat x) if they point to the same entry, have the same return-value and use the same parameters.

7. The extensions names returned by glGetStringi(GL_EXTENSIONS, i) should report the functionality. If there is no adequate ARB string, the functionality is probably not supported even if should be included into the core of the version the driver supports. You can be a 100% sure only after retrieving the function pointer and try to execute it properly. Considering OPs question, I can bet that mentioned functionality (part of GL_ARB_robustness and WGL_ARB_create_context_robustness) is not supported in any form.

8. Claiming that appropriate version of OpenGL is supported is not a guarantee that it is true. I won't start a debate about it, but there is a plenty of examples.

9. Starting from OpenGL 4.0, the addition of new functionality does not follow new hardware capabilities. For example, 82% of OpenGL 4.3 functionality is supported by the old hardware (SM4). The same is true for OpenGL 4.1 and 4.2 (70+%). So, even if a driver claims it supports OpenGL 3.3, it actually could support more than 70% of all versions above (up to 4.3). The exception is only OpenGL 4.0, because it requires SM5 hardware exclusively.

Sorry for repeating your words, Brother Bob and Mhagain, but I tried to summarize all you sad. I hope it is clearer now. :)
Regarding your number 6, the example of GL_ARB_shader_objects, which was quite different in some key areas to the core 2.0 implementation of GLSL, should be sufficient warning that ARB and core are not necessarily always identical. Having said that, I don't think we'll be seeing that happen again.

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.

This topic is closed to new replies.

Advertisement