pjmlp 4 hours ago

No surprise here, given the extent HLSL is already the de facto shading language for Vulkan.

Khronos already mentioned in a couple of conferences that there will be no further work improving GLSL, and given DirectX weight in the industry, HLSL kind of took over.

Additionally for the NVidia fans, it might be that Slang also gets a place in the Vulkan ecosystem, discussions are ongoing, as revealed on SIGGRAPH sessions.

  • TillE 4 hours ago

    My understanding was that dxc lacked support for compiling various HLSL features to SPIR-V (hence SM7 now), so there are still a bunch of Vulkan-focused projects like Godot which only support GLSL.

    But yes, the games industry has been almost entirely HLSL since forever, and this is going to help remove the final obstacles.

  • Simran-B 3 hours ago

    What about WGSL though, the shader language of WebGPU? WebGPU is kind of Vulkan lite, but unlike with Vulkan, Apple is on board and actually the reason why WGSL exists as yet another shading language.

    • jsheard 3 hours ago

      What about it? Nobody wanted WGSL, it's just an artifact of having to appease Apple during WebGPUs development as you say. I don't see why it would be adopted for anything else.

      The old WebGPU meeting notes have some choice quotes from (IIRC) Unity and Adobe engineers literally begging the committee not to invent a new shader language.

    • pjmlp 3 hours ago

      WebGPU, like WebGL, is a decade behind the native APIs it is based on.

      No one asked for a new Rust like shading language that they have to rewrite their shaders on.

      Also contrary to FOSS circles, most studios don't really care about Web 3D, hence why streaming is such a thing for them.

      There have been HLSL to SPIR-V compilers for several years now, this is Microsoft own official compiler getting SPIR-V backend as well.

  • camel-cdr 3 hours ago

    I haven't used either in a while, what is missing from GLSL?

    • pjmlp 3 hours ago

      C based, no support for modular programming, everything needs to be a giant include, no one is adding features to it as Khronos isn't assigned any budget to it.

      HLSL has evolved to be C++ like, including lightweight templates, mesh shaders and work graphs, has module support via libraries, is continuously being improved on each DirectX release.

  • gigatexal 4 hours ago

    Will this help games be more compatible with the proton layer on Linux or is this not related?

tester756 4 hours ago

This is really good news!

omershapira 3 hours ago

Cinematic crossovers have gone too far

binary132 4 hours ago

Hopefully this isn’t actually Third SPIR-V Dialect

bobajeff 4 hours ago

Good. Now if Windows would adopt Vulkan as the graphics API of the future.

  • nicebyte 3 hours ago

    vulkan is already supported on windows as a first-class citizen by all major IHVs. I am not sure what this "adoption" you speak would entail. If you're talking about replacing d3d12, that actually is a terrible idea.

    • bobajeff 3 hours ago

      That's not really the same as being supported by Windows. I think that's 3rd party support and not built into the OS.

      • nicebyte 3 hours ago

        what do you mean when you say "built into the os"? d3d12 is just an api. the d3d runtime is user-space, both the UMD that wraps it and the KMD are supplied by the hardware vendor. In the end, both a d3d app and a vulkan app end up talking to the very same KMD. See here for reference:

        https://learn.microsoft.com/en-us/windows-hardware/drivers/d...

        • mrpippy an hour ago

          D3D is clearly more integrated into the OS than Vulkan is.

          Most importantly, Windows includes a software D3D renderer (WARP) so apps can depend on it always being present (even if the performance isn’t spectacular). There are lots of situations where Vulkan isn’t present on Windows, for example a Remote Desktop/terminal server session, or machines with old/low-end video cards. These might not be important for AAA games, but for normal applications they are.

          Another example: Windows doesn’t include the Vulkan loader (vulkan-1.dll), apps need to bundle/install that.

          • nicebyte 34 minutes ago

            > D3D is clearly more integrated into the OS than Vulkan is.

            sure, but addressing the two points that you brought up would not entail changing windows _the operating system_, just the stuff that ships with it. you could easily ship swift shader along with warp and the loader library, both of those are just some application libraries as far as the os/kernel is concerned. of course now we're in the territory of arguing about "what constitutes an OS" :-)

        • bobajeff 3 hours ago

          Oh, I was under the impression that Direct X 12 was built-in for Windows like Metal is on Apple.

    • jcotton42 3 hours ago

      Does that support extend to ARM? Not sure if it's still the case, but I recall that early Windows on ARM devices didn't have native Vulkan (and I believe OpenGL was translated to DirectX via ANGLE).

      • nicebyte 3 hours ago

        I haven't laid my hands on any ARM windows devices so I wouldn't be able to tell you. I'd be somewhat surprised if the newer snapdragon stuff doesn't have vulkan support because qcom supports vulkan first-class on its gpus. in fact, on newer android devices OpenGL support might already be implemented on top of vulkan, but don't quote me on that.

    • jimbob45 3 hours ago

      If you're talking about replacing d3d12, that actually is a terrible idea.

      Why do you say that?

      • nicebyte 3 hours ago

        I say this because vulkan is hamstrung by being an "open API" intended to run on a very wide range of devices including mobiles. this has major repercussions, like the awkward descriptor set binding model (whereas d3d12's descriptor heaps are both easier to deal with and map better to the actual hardware that d3d12 is intended to run on, see e.g. https://www.gfxstrand.net/faith/blog/2022/08/descriptors-are...). overall d3d has the benefit of a narrower scope.

        Another problem with being an open API is that (and this is my own speculation) it's easier for IHVs to collaborate with just Microsoft to move faster and hammer out the APIs for upcoming novel features like work graphs for example, vs bringing it into the public working group and "showing their cards" so to speak. This is probably why vk gets all new shiny stuff like rtrt, mesh shaders etc. only after it has been in d3d for a while.

        One could argue this is all solvable by "just" adding a torrent of extensions to vulkan but it's really not clear to me what that path offers vs d3d.

        • trelane 15 minutes ago

          The downside is that it ties them incredibly heavily to Microsoft, and makes cross-platform efforts much harder.

  • mardifoufs 3 hours ago

    What's wrong with d3d12? It works perfectly fine for what it does. In my experience it causes a lot less issues than Vulkan. And it's not really due to windows not supporting Vulkan correctly, since my experience with Vulkan has mostly been on Linux.

    I don't dislike Vulkan either, it's just that I don't see the point of replacing something that works pretty well.

    • bobajeff 3 hours ago

      Adopting Vulkan doesn't mean removing Direct X 12. Just like adopting spirv doesn't mean removing hlsl. No one said anything about getting rid of anything.

      • Narishma 2 hours ago

        SPIR-V is not an alternative to HLSL. It's an intermediary format that you compile HLSL (or GLSL) to.

    • shmerl 3 hours ago

      Reinvention of the wheel and tax on supporting "yet another thing" for developers who need to deal with it.

      Same reason standards have some value.

      • izacus 2 hours ago

        It's Vulkan that was reinventing the DX12 wheel wasn't it though?

        • shmerl 26 minutes ago

          In this case Vulkan is the only option. DX12 is a non starter since it was never intended to be universally available.

        • ekianjo an hour ago

          DX12 is proprietary. Vulkan is not.

        • HideousKojima 2 hours ago

          Vulkan is based on Mantle, which predates the release of DX12 by about 2 years.

  • forrestthewoods 28 minutes ago

    Why?

    Vulkan is not a well designed API. It's so complicated, verbose, and error prone. It's pretty bad.

  • shmerl 3 hours ago

    It should.

r1chardnl 5 hours ago

[flagged]

  • jsheard 5 hours ago

    Step 1: Microsoft has a proprietary alternative to an open standard, people complain.

    Step 2: Microsoft begins adopting the open standard, people complain.

    • majorchord 5 hours ago
      • jsheard 5 hours ago

        I know that's what they're referring to. If you're concerned about Microsoft gaining undue influence over Vulkan/SPIR-V then rest assured they already effectively controlled the desktop graphics landscape, however they define DirectX becomes the template for hardware vendors to follow, and Vulkan then has to follow their lead.

        The pattern is especially obvious with big new features like raytracing, which was added to DirectX first and then some time later added to Vulkan with an API which almost exactly mirrors how DirectX abstracts it. There are even Vulkan extensions which exist specifically to make emulating DirectX semantics easier.

        • chucke1992 5 hours ago

          That's understandable. Control over standards has the immense value. Just like look at Nvidia's CUDA.

          • pjmlp 5 hours ago

            CUDA success has much to thank Intel and AMD for never providing anything with OpenCL that could be a proper alternative in developer experience, graphical debugging, libraries and stable drivers.

            Even OpenCL 2.x C++ standard was largely ignored or badly supported by their toolchains.

            • winwang 4 hours ago

              Isn't the point of OpenCL to be... open? Not only did Intel and AMD not provide enough value, but neither did the community.

              CUDA... is kind of annoying. And yet, it's the best experience (for GPGPU), as far as I can tell.

              I feel like it says something that CUDA sets a standard for GPGPU (i.e. its visible runtime API) but others still fail to catch up.

              • cogman10 3 hours ago

                The problem is the OpenCL development model is just garbage.

                Compare the hello world of OpenCL [1] vs CUDA [2]. So much boilerplate and low level complexity for doing OpenCL whereas the CUDA example is just a few simple lines using the cuda compiler.

                And what really sucks is it's pretty hard to get away from that complexity the way OpenCL is structured. You simply have to know WAY too much about the hardware of the machine you are running on, which means having the intel/amd/nvidia routes in your application logic when trying to make an OpenCL app.

                Meanwhile, CUDA, because it's unapologetically just for nVidia cards, completely does away with that complexity in the happy path.

                For something to be competitive with CUDA, the standard needs something like a platform agnostic bytecode to target so a common accelerated platform can scoop up the bytecode and run it on a given platform.

                [1] https://github.com/intel/compute-samples/blob/master/compute...

                [2] https://github.com/premprakashp/cuda-hello-world

            • dragontamer 4 hours ago

              OpenCL 2.x was a major failure across the board.

              OpenGL and Vulkan were good though. Gotta take the wins where they exist.

              • pjmlp 3 hours ago

                Thanks to Intel and AMD.

            • talldayo 4 hours ago

              cough cough

              Remind me who owns the OpenCL trademark, again?

              Intel and AMD weren't the ones that abandoned it. Speaking in no uncertain terms, there was a sole stakeholder that can be held responsible for letting the project die and preventing the proliferation of Open GPGPU standards. A company that has everything to gain from killing Open standards in the cradle and replacing them with proprietary alternatives. Someone with a well-known grudge against Khronos who's willing to throw an oversized wrench into the plans as long as it hurts their opponents.

              • pjmlp 3 hours ago

                Don't blame Apple for what Khronos, Intel and AMD have done with OpenCL after version 1.0.

                It isn't Apple's fault that Intel and AMD didn't deliver.

                • talldayo 3 hours ago

                  It is entirely Apple's fault that they rejected OpenCL to replace it with a proprietary library. If this was an implementation or specification problem, Apple had every opportunity to shape the project in their own image. They cannot possibly argue that this was done for any other reason than greed, considering they themselves laid the framework for such a project. Without Apple's cooperation, Open Source GPGPU libraries can not reasonably target every client. Apple knows they wield this power, and considering their history it's both illogical and willfully ignorant to assume they're not doing this as part of a broader trend of monopolistic abuse.

                  Having shut out Nvidia as part of a petty feud, Apple realized they could force any inferior or nonfree CUDA alternative onto their developers no matter how unfinished, slow or bad it is. They turned away from the righteous and immediately obvious path to complicate things for developers that wanted to ship cross-platform apps instead of Mac-only ones.

              • google234123 4 hours ago

                Would you be willing to share the deal with Apple/Khronos relations?

                • troupo 4 hours ago

                  Apple didn't like OpenGL, rightfully, and came up with their own Metal which they released two years before first version of Vulkan was released.

                  Now people pretend that Apple is bad because it never adopted Vulkan and never implemented the "good modern OpenGL" (which never really existed).

                  • jsheard 4 hours ago

                    It runs deeper than that, during the development of WebGPU it came to light that Apple was vetoing the use of any Khronos IP whatsoever, due to a private legal dispute between them. That led to WebGPU having to re-invent the wheel with a brand new shader language because Apples lawyers wouldn't sign off on using GLSL or SPIR-V under any circumstances.

                    The actual details of the dispute never came out, so we don't know if it has been resolved or not.

                    • binary132 4 hours ago

                      Apple, refusing to use open standards, and instead demanding everyone else do things their way? Say it’s not so!

                      • jsheard 3 hours ago

                        The bizarre thing is that Apple did used to cooperate with Khronos, they were involved with OpenGL and even donated the initial version of the OpenCL spec to them. Something dramatic happened behind the scenes at some point.

                        • pjmlp 3 hours ago

                          Most likely related to how Khronos managed OpenCL after getting hold of it.

                          • talldayo 3 hours ago

                            Please, tell us all about how Khronos hurt Apple with free software that Apple had every opportunity to influence. Point to the boo-boo that justifies making things worse for everyone.

      • plorkyeran 4 hours ago

        Yes, obviously. It is an incredibly tiresome comment which is brought up every single time that Microsoft adopts any sort of open standard and it's never done with any particular insight into if this is one of the times that it'll be relevant.