Added virtual function to enable extension based on extension list from physical device

This commit is contained in:
Sascha Willems 2022-10-02 15:46:06 +02:00
parent 44c95211aa
commit 727d351b42
2 changed files with 8 additions and 0 deletions

View file

@ -386,6 +386,8 @@ public:
virtual void setupRenderPass();
/** @brief (Virtual) Called after the physical device features have been read, can be used to set features to enable on the device */
virtual void getEnabledFeatures();
/** @brief (Virtual) Called after the physical device extensions have been read, can be used to enable extensions based on the supported extension listing*/
virtual void getEnabledExtensions();
/** @brief Prepares all Vulkan resources and functions required to run the sample */
virtual void prepare();