Skip to content

Commit

Permalink
[Tests] Disable VVL GPU-AV
Browse files Browse the repository at this point in the history
Results in sporadic false positive validation errors with SDK version 1.3.280
  • Loading branch information
hyazinthh committed Apr 24, 2024
1 parent f00dd7b commit ea7f522
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Tests/Aardvark.Rendering.Tests/Tests/Application.fs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ module TestApplication =
let create (backend : TestBackend) =
let config : IDebugConfig =
if backend = TestBackend.Vulkan then
// Disable GPU-AV (producing sporadic false positives with Vulkan SDK 1.3.280)
{ Vulkan.DebugConfig.Normal with
ValidationLayer = Some Vulkan.ValidationLayerConfig.Full }
ValidationLayer = Some { Vulkan.ValidationLayerConfig.Full with ShaderBasedValidation = Vulkan.ShaderValidation.Disabled } }
else
{ GL.DebugConfig.Normal with
DebugRenderTasks = true
Expand Down

0 comments on commit ea7f522

Please sign in to comment.