No Vulkan or DX12 In Game Settings #2820
-
Hi ! My Specs I have also tried vs2022 .csproj method. Nothing works 😔 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
https://doc.stride3d.net/4.2/en/manual/graphics/graphics-api.html |
Beta Was this translation helpful? Give feedback.
-
The graphics profile determines what shader features are supported. The graphics backend is determined by the .csproj setting as stated by IXLLEGACYIXL. Once you set the the |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
The graphics profile determines what shader features are supported. The graphics backend is determined by the .csproj setting as stated by IXLLEGACYIXL.
Once you set the the Vulkan you should see the command --compile-property:StrideGraphicsApi=Vulkan in the build output to tell you that its using that backend.
Steps:
To run your projects through a different API than the default one, add the following line to the PropertyGroup of your executable's .csproj file:
Supported values are as follows:
Null
Direct3D11
Direct3D12
OpenGL
OpenGLES
Vulkan
You may also have to add
<
to your main .csproj, and don't forget to replace Version appropriately.