summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp')
-rw-r--r--3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp b/3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
index 55ecb4a6af0..9efbac4fa08 100644
--- a/3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
+++ b/3rdparty/bgfx/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
@@ -139,8 +139,8 @@ struct Camera
struct Interp3f
{
- bx::Vec3 curr;
- bx::Vec3 dest;
+ bx::Vec3 curr = bx::init::None;
+ bx::Vec3 dest = bx::init::None;
};
Interp3f m_target;