Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
LSANSuppressions.h
Go to the documentation of this file.
1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2// SPDX-FileCopyrightText: 2026 Jorrit Rouwe
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
7#if defined(JPH_USE_VK) && defined(JPH_ASAN_ENABLED)
8
9// Suppress ASAN leak detection for the Vulkan driver
10extern "C" const char *__lsan_default_suppressions()
11{
12 return "leak:libvulkan";
13}
14
15#endif