Removed function to get enabled features, features can be set directly in derived constructor due to new explicit Vulkan initialization

This commit is contained in:
saschawillems 2016-12-14 21:38:45 +01:00
parent ca27585ee6
commit 401369f716
7 changed files with 44 additions and 47 deletions

View file

@ -76,6 +76,9 @@ public:
rotation = glm::vec3(0.0f, -25.0f, 0.0f);
enableTextOverlay = true;
title = "Vulkan Example - Geometry shader";
// Enable physical device features required for this example
// Tell the driver that we are going to use geometry shaders
enabledFeatures.geometryShader = VK_TRUE;
}
~VulkanExample()