diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-04-16 04:41:20 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-04-16 04:41:20 +0000 |
| commit | 079680f868c1ec09013e62efde42fdd95cc1347c (patch) | |
| tree | 33c64b3199fe400fb0f59183e48cf5c5e35fbf00 /Common/interface | |
| parent | Fixed Linux/Mac build error (diff) | |
| download | DiligentCore-079680f868c1ec09013e62efde42fdd95cc1347c.tar.gz DiligentCore-079680f868c1ec09013e62efde42fdd95cc1347c.zip | |
Fixed issue with FenceVkImpl not waiting for Vulkan fences to signal when being destroyed, which causes Vulkan validation errors.
Diffstat (limited to 'Common/interface')
| -rw-r--r-- | Common/interface/AdvancedMath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/interface/AdvancedMath.h b/Common/interface/AdvancedMath.h index 0481b22e..7d16d695 100644 --- a/Common/interface/AdvancedMath.h +++ b/Common/interface/AdvancedMath.h @@ -33,7 +33,7 @@ namespace Diligent struct Plane3D { float3 Normal; - float Distance; //Distance from the coordinate system origin to the plane along the normal direction + float Distance = 0; //Distance from the coordinate system origin to the plane along the normal direction }; struct ViewFrustum |
