From c29aaaf66c1f4c11e8b3e4decbe129626b5553f3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 26 Nov 2020 15:56:44 +0100 Subject: Add pugl::World constructor overload that takes a flag Eventually we'll need an actual smart flags type here, but for now there's only one flag anyway, so simply define an overload that takes one. --- examples/pugl_vulkan_cxx_demo.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/pugl_vulkan_cxx_demo.cpp') diff --git a/examples/pugl_vulkan_cxx_demo.cpp b/examples/pugl_vulkan_cxx_demo.cpp index 154bbaf..677750f 100644 --- a/examples/pugl_vulkan_cxx_demo.cpp +++ b/examples/pugl_vulkan_cxx_demo.cpp @@ -1438,8 +1438,7 @@ makeRects(const size_t numRects, const uint32_t windowWidth) PuglVulkanDemo::PuglVulkanDemo(const PuglTestOptions& o, const size_t numRects) : opts{o} - , world{pugl::WorldType::program, - static_cast(pugl::WorldFlag::threads)} // FIXME? + , world{pugl::WorldType::program, pugl::WorldFlag::threads} , loader{world} , view{world, *this} , rects{makeRects(numRects, extent.width)} -- cgit v1.2.1