From f766b30b2de3ffe2cf6b656d943720882617ec58 Mon Sep 17 00:00:00 2001 From: Mike Schuchardt Date: Sun, 20 Jul 2025 22:59:59 -0700 Subject: build: Update to header 1.4.323 - Fix a warning in cube.cpp due to resetFences becoming nodiscard --- cube/cube.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cube') diff --git a/cube/cube.cpp b/cube/cube.cpp index a448ddab..ef43a4b7 100644 --- a/cube/cube.cpp +++ b/cube/cube.cpp @@ -901,7 +901,8 @@ void Demo::draw() { } // Only reset right before submitting so we can't deadlock on an un-signalled fence that has nothing submitted to it - device.resetFences({current_submission.fence}); + auto reset_result = device.resetFences({current_submission.fence}); + VERIFY(reset_result == vk::Result::eSuccess); // Wait for the image acquired semaphore to be signaled to ensure // that the image won't be rendered to until the presentation -- cgit v1.2.3