diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-29 06:59:57 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-29 06:59:57 +0000 |
| commit | 47ebe9b545d2efa9b60a735ee261d78eaa54aa57 (patch) | |
| tree | 87c7a295204d514ab214c33ab8306d1e4d414f55 /Graphics/GraphicsEngineVulkan | |
| parent | Reworked C interface to optimize inheritance handling (diff) | |
| download | DiligentCore-47ebe9b545d2efa9b60a735ee261d78eaa54aa57.tar.gz DiligentCore-47ebe9b545d2efa9b60a735ee261d78eaa54aa57.zip | |
Fixed a number of minor issues
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp b/Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp index b34a8689..4b863925 100644 --- a/Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp +++ b/Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp @@ -366,15 +366,18 @@ void EngineFactoryVkImpl::CreateSwapChainVk(IRenderDevice* pDevice, #ifdef DOXYGEN /// Loads Direct3D12-based engine implementation and exports factory functions -/// \param [out] GetFactoryFunc - Pointer to the function that returns factory for Vk engine implementation. -/// See EngineFactoryVkImpl. +/// +/// return - Pointer to the function that returns factory for Vk engine implementation. +/// See Diligent::EngineFactoryVkImpl. +/// /// \remarks Depending on the configuration and platform, the function loads different dll: +/// /// Platform\\Configuration | Debug | Release /// --------------------------|-------------------------------|---------------------------- /// x86 | GraphicsEngineVk_32d.dll | GraphicsEngineVk_32r.dll /// x64 | GraphicsEngineVk_64d.dll | GraphicsEngineVk_64r.dll /// -void LoadGraphicsEngineVk(GetEngineFactoryVkType& GetFactoryFunc) +GetEngineFactoryVkType LoadGraphicsEngineVk() { // This function is only required because DoxyGen refuses to generate documentation for a static function when SHOW_FILES==NO # error This function must never be compiled; |
