SpaceCadet11864 wrote: ↑Wed, 12. Dec 18, 01:26
Thanks, I'm sitting in my chair mostly corrected - and again sorry for being rude. I read "vulkan is higher performance" as "vulkan is better than directx" which I think a few people were saying, which irked me the most because as you of all posters in this thread probably know, that is still in debate.
You're welcome

I must say, there has been a certain degree of overreaction on both sides.
I don't know about this one. I have NVIDIA, and basically have a lot more 3D optimization options in the control panel for DIRECTX games (ambient occlusion is one, but there is more) - I have by far the fewest options for opengl, and have zero options, none at all, for vulkan. Maybe that's because its new? probably.
That's just it - there shouldn't be (ideally) any, or at least very little. That is the vision behind Vulkan - to rip off all the driver gunk out of it, as much as possible. That includes those "tweaks". Which is all they are - driver overrides of certain functionality. They allow the driver to interact with the pipeline, at unspecified costs. What makes those tweaks possible is that behavior of certain API calls is left up to the implementation (the driver). With Vulkan, programmers are supposed to write exactly the pipeline they require. Conditions do apply of course, it's not like we live in an ideal world. Some tweaks will come with time, I'm sure.
I haven't heard of nvidia wanting to push it to vulkan, most I heard of ray tracing is microsoft bringing it to DirectX and then a few months later NVIDIA coming out with RTX which supported it.
https://devblogs.nvidia.com/vulkan-raytracing/
I've yet to look at that particular API though. Of course, there already have been posts on these very forums about how EGO now could "enable" ray-tracing in X4, as if that's just a switch to toggle. Annoys me to no end.
That being said, I don't think having a decades-old codebase puts you in a better position to invent Real time raytracing, i mean if anything having an old codebase can set you behind in some cases. However, I think your point is Vulkan is new, give them some time - and if it is, I agree there.
Indeed it can, that's why Ego re-envisioned the whole graphics approach, twice now. First in Rebirth, then in Rebirth VR and X4. There's only so much you can stuff into your old pipeline. But don't forget - large AAA-producing companies have tech that has been bringing them profits for years now. It's not likely they'd just drop all that and rush for new and shiny things. Adoption takes time. DOOM really stands out in that regard, but Id always was a pioneer of bleeding edge, so that isn't surprising.
Heck, getting rid of legacy setbacks was the purpose of OpenGL 3+, and now - Vulkan. Still, we shouldn't just expect that Vulkan would "replace" DirectX. Most likely people will continue using platform-specific APIs for a good while, for better driver support and compatibility.
Oh and about SPIR-V
It looks like people use GLSL and compile them to SPIR-V - BTW: Have you seen the shaders unpacked from the .cat files? They're GLSL I think.
Core Vulkan, at least for now, does not define any particular high-level shader language. There is, however, a GLSL compiler supplied with the SDK, and there's even an extension to the API that lets the drivers utilize their already existing compilers, so that application developers can just pass GLSL code directly without having to pre-compile it to SPIR-V (that's what I meant earlier about custom compilers). Whether EGO does that or has their own translator, I don't know, and I haven't looked at those game files. Maybe when I can actually play the damn game
I highly doubt that. As that article states, those particular things vary between implementations, meaning, especially with Vulkan, that one has to know exactly what compiler is used to translate the GLSL code, and looking at the resulting bytecode. Without that, and most importantly, without having particular performance data, any "optimizations" of that sort are moot. Not to mention that, judging by what people are reporting, GPU performs just fine with the game.