File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ project(Diligent-SuperResolution CXX)
77set (DILIGENT_DLSS_SUPPORTED FALSE CACHE INTERNAL "DLSS is not supported" )
88set (DILIGENT_DSR_SUPPORTED FALSE CACHE INTERNAL "DirectSR is not supported" )
99
10- if (PLATFORM_WIN32 AND NOT MINGW_BUILD)
10+ if (PLATFORM_WIN32 AND NOT MINGW_BUILD AND CMAKE_SIZEOF_VOID_P EQUAL 8 )
1111 if (D3D11_SUPPORTED OR D3D12_SUPPORTED OR VULKAN_SUPPORTED)
1212 set (DILIGENT_DLSS_SUPPORTED TRUE CACHE INTERNAL "DLSS is supported on Win32 platform" )
1313 endif ()
Original file line number Diff line number Diff line change 3131#include " EngineMemory.h"
3232#include " PlatformDebug.hpp"
3333
34+ #include < memory>
35+
3436namespace Diligent
3537{
3638
@@ -103,6 +105,7 @@ class SuperResolutionFactory : public ObjectBase<ISuperResolutionFactory>
103105#ifdef DILIGENT_METALFX_SUPPORTED
104106 AddProvider (pDevice, CreateMetalFXProvider, " MetalFX" );
105107#endif
108+ (void )AddProvider;
106109 }
107110
108111 IMPLEMENT_QUERY_INTERFACE_IN_PLACE (IID_SuperResolutionFactory, TBase)
You can’t perform that action at this time.
0 commit comments