Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

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).




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

Search: