From 51e8675e97b2363f86f5e93c72f81b8026bd24d3 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 12 Dec 2021 13:01:38 +0200 Subject: [PATCH] Enable geometry shaders by default --- source/backends/vulkan/device_backend.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/backends/vulkan/device_backend.cpp b/source/backends/vulkan/device_backend.cpp index cc94e967..efdd596c 100644 --- a/source/backends/vulkan/device_backend.cpp +++ b/source/backends/vulkan/device_backend.cpp @@ -25,6 +25,7 @@ VulkanDevice::~VulkanDevice() Graphics::VulkanOptions VulkanDevice::create_default_options() { Graphics::VulkanOptions opts; + opts.enable_geometry_shader = true; #ifdef DEBUG opts.enable_validation = true; opts.enable_debug_report = true; -- 2.43.0