rename fsr2 folders
This commit is contained in:
cdozdil
2024-08-21 22:44:15 +03:00
parent 9f8b998414
commit 0af1d41107
54 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -80,7 +80,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>$(ProjectDir);$(ProjectDir)shaders;$(SolutionDir)external\vulkan\include;$(SolutionDir)external\nvngx_dlss_sdk;$(SolutionDir)external\xess\inc\xess;$(SolutionDir)external\FidelityFX-SDK\ffx-api\include\ffx_api;$(SolutionDir)external\simpleini;$(SolutionDir)external\unordered_dense\include;$(SolutionDir)external\spdlog\include;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\fsr2;$(SolutionDir)external\nvapi;$(IncludePath)</IncludePath>
<LibraryPath>$(SolutionDir)external\fsr2\221\lib;$(SolutionDir)external\fsr2\212\lib;$(SolutionDir)external\vulkan_lib;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\xess\lib;$(LibraryPath)</LibraryPath>
<LibraryPath>$(SolutionDir)external\fsr2\fsr2_221\lib;$(SolutionDir)external\fsr2\fsr2_212\lib;$(SolutionDir)external\vulkan_lib;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\xess\lib;$(LibraryPath)</LibraryPath>
<TargetName>dxgi</TargetName>
<OutDir>D:\Folders\Games\Deep Rock Galactic\FSD\Binaries\Win64\</OutDir>
<IntDir>.\x64\Debug</IntDir>
@@ -88,7 +88,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>$(ProjectDir);$(ProjectDir)shaders;$(SolutionDir)external\vulkan\include;$(SolutionDir)external\nvngx_dlss_sdk;$(SolutionDir)external\xess\inc\xess;$(SolutionDir)external\FidelityFX-SDK\ffx-api\include\ffx_api;$(SolutionDir)external\simpleini;$(SolutionDir)external\unordered_dense\include;$(SolutionDir)external\spdlog\include;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\fsr2;$(SolutionDir)external\nvapi;$(IncludePath)</IncludePath>
<TargetName>nvngx</TargetName>
<LibraryPath>$(SolutionDir)external\fsr2\221\lib;$(SolutionDir)external\fsr2\212\lib;$(SolutionDir)external\vulkan_lib;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\xess\lib;$(LibraryPath)</LibraryPath>
<LibraryPath>$(SolutionDir)external\fsr2\fsr2_221\lib;$(SolutionDir)external\fsr2\fsr2_212\lib;$(SolutionDir)external\vulkan_lib;$(SolutionDir)external\d3dx;$(SolutionDir)external\detours;$(SolutionDir)external\xess\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
+1 -1
View File
@@ -1,7 +1,7 @@
#pragma once
#include "../IFeature.h"
#include <221/include/ffx_fsr2.h>
#include <fsr2_221/include/ffx_fsr2.h>
inline static std::string ResultToString(FfxErrorCode result)
+1 -1
View File
@@ -2,7 +2,7 @@
#include "../IFeature_Dx11.h"
#include "FSR2Feature.h"
#include <221/include/dx11/ffx_fsr2_dx11.h>
#include <fsr2_221/include/dx11/ffx_fsr2_dx11.h>
#include <dxgi1_4.h>
class FSR2FeatureDx11 : public FSR2Feature, public IFeature_Dx11
@@ -2,7 +2,7 @@
#include "../IFeature_Dx11wDx12.h"
#include "FSR2Feature.h"
#include <221/include/dx12/ffx_fsr2_dx12.h>
#include <fsr2_221/include/dx12/ffx_fsr2_dx12.h>
class FSR2FeatureDx11on12 : public FSR2Feature, public IFeature_Dx11wDx12
{
+1 -1
View File
@@ -2,7 +2,7 @@
#include "../IFeature_Dx12.h"
#include "FSR2Feature.h"
#include <221/include/dx12/ffx_fsr2_dx12.h>
#include <fsr2_221/include/dx12/ffx_fsr2_dx12.h>
class FSR2FeatureDx12 : public FSR2Feature, public IFeature_Dx12
{
+1 -1
View File
@@ -2,7 +2,7 @@
#include "../IFeature_Vk.h"
#include "FSR2Feature.h"
#include <221/include/vk/ffx_fsr2_vk.h>
#include <fsr2_221/include/vk/ffx_fsr2_vk.h>
class FSR2FeatureVk : public FSR2Feature, public IFeature_Vk
{
@@ -1,7 +1,7 @@
#pragma once
#include "../IFeature.h"
#include <212/include/ffx_fsr2.h>
#include <fsr2_212/include/ffx_fsr2.h>
inline static std::string ResultToString212(Fsr212::FfxErrorCode result)
{
@@ -2,7 +2,7 @@
#include "../IFeature_Dx11wDx12.h"
#include "FSR2Feature_212.h"
#include <212/include/dx12/ffx_fsr2_dx12.h>
#include <fsr2_212/include/dx12/ffx_fsr2_dx12.h>
class FSR2FeatureDx11on12_212 : public FSR2Feature212, public IFeature_Dx11wDx12
{
@@ -2,7 +2,7 @@
#include "../IFeature_Dx12.h"
#include "FSR2Feature_212.h"
#include <212/include/dx12/ffx_fsr2_dx12.h>
#include <fsr2_212/include/dx12/ffx_fsr2_dx12.h>
class FSR2FeatureDx12_212 : public FSR2Feature212, public IFeature_Dx12
{
@@ -2,7 +2,7 @@
#include "../IFeature_Vk.h"
#include "FSR2Feature_212.h"
#include <212/include/vk/ffx_fsr2_vk.h>
#include <fsr2_212/include/vk/ffx_fsr2_vk.h>
class FSR2FeatureVk212 : public FSR2Feature212, public IFeature_Vk
{
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.