DanielSnd

Results 16 comments of DanielSnd

How did you get the hardwiring to run? I generated the dump but now I don't know what to do with it.

This is great! I'm using this fix on a mixed reality project I'm working on for a hackathon, you can see the result of the fix here: ![ezgif-4-e8f9b9d864](https://github.com/godotengine/godot/assets/9072324/e9094c07-b9d6-4844-8791-2617bab5184e) Without it...

I was testing this PR and disabling Depth Prepass in project settings seems to completely break rendering for me. Can reproduce the issue in @Calinou 's test project. `driver/depth_prepass/enable=false`

> > I was testing this PR and disabling Depth Prepass in project settings seems to completely break rendering for me. Can reproduce the issue in @Calinou 's test project....

Not sure if this is the right place to put this, but I've been trying to check how the glow would run on my quest 2. After the fixes I...

> > Found a new issue with it, if there's a shader that's has the render modes `cull_front` and also `depth_draw_never` in the scene it either freezes the scene view...

I think I'm running into this quite a bit, I'm running on a modified version of 4.3dev3 and was wondering if something I did in my modifications was causing the...

> @Sauermann Are you using Windows 10 or 11? I'm not able to reproduce #88324 on Windows 10, but I can confirm the PR fixes #73926 and #70361 for me....

> You can download it from https://github.com/KhronosGroup/MoltenVK/releases, and set path to extracted archive using `vulkan_sdk_path={PATH}` build flag. > > But OSXCross build might require a custom build of MoltenVK with...

` if env["vulkan"]: env.Append(CPPDEFINES=["VULKAN_ENABLED"]) env.Append(LINKFLAGS=["-framework", "Metal", "-framework", "IOSurface"]) if not env["use_volk"]: env.Append(LINKFLAGS=["-lMoltenVK"]) mvk_found = False mvk_list = [get_mvk_sdk_path(), "/opt/homebrew/lib", "/usr/local/homebrew/lib", "/opt/local/lib"] if env["vulkan_sdk_path"] != "": mvk_list.insert(0, os.path.expanduser(env["vulkan_sdk_path"])) mvk_list.insert( 0, os.path.join(...