---------------------------------------------------------------------
| 40 | const String &VulkanPlugin::getName() const { return sPluginName; } |
| 41 | //--------------------------------------------------------------------- |
| 42 | void VulkanPlugin::install( const NameValuePairList *options ) |
| 43 | { |
| 44 | mRenderSystem = OGRE_NEW VulkanRenderSystem( options ); |
| 45 | |
| 46 | Root::getSingleton().addRenderSystem( mRenderSystem ); |
| 47 | } |
| 48 | //--------------------------------------------------------------------- |
| 49 | void VulkanPlugin::initialise() |
| 50 | { |
nothing calls this directly
no test coverage detected