Hacker News new | past | comments | ask | show | jobs | submit login

GL was modern in the 1980s. Making it "Open" didn't particularly modernize it, that just popularized it. It's finally deprecated on Mac.



OpenGL has received continuous development. Also, I find it easier to work with than Vulkan. Sometimes you do want higher abstraction.


OpenGL isn't really a 'high abstraction level' API though, that would be a lot more 'declarative'.

Instead it's originally modelled after some mid-80s(?) fixed-function 3D rendering hardware from SGI, which then got incrementally extended in the following decades to support new GPU hardware features, but without any thought put into the overall API design.


I don't think "higher level" intrinsically means "declarative" though. I'd think most people would agree OpenGL is higher level than Vulkan for a variety of reasons.


I guess what I wanted to say is that GL transitioned from a non-abstractive API in it's very early days into the wrong abstraction in the present day.


Well, there is AZDO, and in platforms like Android, until Google bothers to provide Java/Kotlin bindings, it is the API most app developers will reach out.

Most will never deal with Vulkan and the NDK directly, unless there is no other way.

Likewise on the Web, for developers that what to write 3D code that is actually usable everywhere.


Can you explain why you think it's "wrong"?


The GL programming model defines a highly granular and highly dynamic state machine of dozens (hundreds?) of small knobs and sliders that needs to be mapped to an underlying hardware which looks very different by now.

This results in small state changes potentially causing large and unpredictable 'recompiles' of the internal 'driver state' at random points (e.g. calling one of the blend state functions - which should be a very cheap operation - might trigger expensive shader recompiles in some random GL call down the line, but if and when this exactly happens depends on the specific GL implementation).

That's one important reason why modern 3D APIs prefer to group state into immutable state-group objects (even if those modern 3D-APIs also don't perfectly map the underlying hardware).


Guess what? GPUs have received continuous development too, since the days of SGI. And OpenGL hasn't kept up. Its "higher" abstraction is the wrong abstraction.


So we are no longer running arbitrary code against arbitrary buffers of random access data?


I think they mean that more recent (or “modern”) OpenGL versions beyond 4.1 aren’t supported on macOS, and semi-seriously suggested Zink/MoltenVK as a way to use (say) OpenGL 4.6 on that platform




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: