From e1f4b9357cbb8f041741ad4213327614ca23bb8b Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 29 Jan 2026 12:36:25 +0000 Subject: [PATCH 1/2] Update to build against VSG changes --- examples/state/vsgsampler/vsgsampler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/state/vsgsampler/vsgsampler.cpp b/examples/state/vsgsampler/vsgsampler.cpp index d598d9ff..b28d9374 100644 --- a/examples/state/vsgsampler/vsgsampler.cpp +++ b/examples/state/vsgsampler/vsgsampler.cpp @@ -223,7 +223,7 @@ int main(int argc, char** argv) else { auto mipmapLayout = image->getMipmapLayout(); - auto [width, height, depth] = image->pixelExtents(); + auto [width, height, depth, numLayers] = image->pixelExtents(); vsg::vec2 extents(width, height); // default mipmap settings From 000d498ae10439b215fd2d9d79da9242de25781b Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 29 Jan 2026 12:36:59 +0000 Subject: [PATCH 2/2] Updated requied VSG version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8132dc95..ea413441 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ if (VULKAN_SDK) set(ENV{VULKAN_SDK} ${VULKAN_SDK}) endif() -find_package(vsg 1.1.13) +find_package(vsg 1.1.14) vsg_setup_dir_vars() vsg_setup_build_vars()