-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
811 changed files
with
98,258 additions
and
6,395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@echo off | ||
call BuildAllCauldronEffectsSolution.bat -DFFX_BUILD_AS_DLL=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@echo off | ||
call BuildAllNativeEffectsSolution.bat -DFFX_BUILD_AS_DLL=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
@echo off | ||
|
||
echo =============================================================== | ||
echo. | ||
echo FidelityFX Build System | ||
echo. | ||
echo =============================================================== | ||
echo Checking pre-requisites... | ||
|
||
:: Check if cmake is installed | ||
cmake --version > nul 2>&1 | ||
if %errorlevel% NEQ 0 ( | ||
echo Cannot find path to CMake. Is CMake installed? Exiting... | ||
exit /b -1 | ||
) else ( | ||
echo CMake Ready. | ||
) | ||
|
||
:: Start by building the backend SDK | ||
echo Building native backend | ||
cd sdk | ||
call BuildFidelityFXSDK.bat | ||
cd .. | ||
|
||
echo. | ||
echo Building FSR sample solution | ||
echo. | ||
|
||
:: Check directories exist and create if not | ||
if not exist build\ ( | ||
mkdir build | ||
) | ||
|
||
cd build | ||
cmake -A x64 .. -DBUILD_TYPE=FFX_FSR -DFFX_API=NATIVE %* | ||
|
||
:: Come back to root level | ||
cd .. | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@echo off | ||
|
||
echo =============================================================== | ||
echo. | ||
echo FidelityFX Build System | ||
echo. | ||
echo =============================================================== | ||
echo Checking pre-requisites... | ||
|
||
:: Check if cmake is installed | ||
cmake --version > nul 2>&1 | ||
if %errorlevel% NEQ 0 ( | ||
echo Cannot find path to CMake. Is CMake installed? Exiting... | ||
exit /b -1 | ||
) else ( | ||
echo CMake Ready. | ||
) | ||
|
||
:: Start by building the backend SDK | ||
:: CUSTOM_CHANGES_TO_FSR3 build FSR3 DLL with RelWithDebInfo configuration | ||
echo Building native backend | ||
cd sdk | ||
call BuildFidelityFXSDK.bat -DFFX_BUILD_AS_DLL=1 | ||
cd .. | ||
|
||
echo. | ||
echo Building FSR sample solution | ||
echo. | ||
|
||
:: Check directories exist and create if not | ||
if not exist build\ ( | ||
mkdir build | ||
) | ||
|
||
cd build | ||
cmake -A x64 .. -DBUILD_TYPE=FFX_FSR -DFFX_API=NATIVE -DFFX_BUILD_AS_DLL=1 | ||
|
||
:: Come back to root level | ||
cd .. | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.