Skip to content

Commit

Permalink
FidelityFX CLI v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rys committed Aug 6, 2021
1 parent 99a2fe3 commit a2b2040
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ project(FidelityFX_CLI)
# enable multi-threaded compilation
add_compile_options(/MP)

# enable the console subsystem
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:CONSOLE")

# Check for Visual Studio 2019's build tooling
if(MSVC_TOOLSET_VERSION VERSION_LESS 142)
message(FATAL_ERROR "Cannot find MSVC toolset version 142 or greater. Please make sure Visual Studio 2019 or newer installed")
Expand All @@ -23,7 +20,7 @@ set(sources
pch.cpp)

# setup target binary
add_executable(${PROJECT_NAME} WIN32 ${sources})
add_executable(${PROJECT_NAME} ${sources})

# add link time dependencies
target_link_libraries(${PROJECT_NAME} PRIVATE d3d11.lib windowscodecs.lib)
2 changes: 1 addition & 1 deletion FidelityFX_CLI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace RCAS_Linear1

static const wchar_t* const APP_NAME = L"FidelityFX-CLI";
static const wchar_t* const EXE_NAME = L"FidelityFX_CLI";
static const wchar_t* const APP_VERSION = L"1.0.1";
static const wchar_t* const APP_VERSION = L"1.0.2";

enum class InterpolationMode
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ THE SOFTWARE.
Simple command line tool that processes image files using the FidelityFX Super Resolution (FSR) or Contrast Adaptive Sharpening (CAS) shader systems.

```
FidelityFX-CLI 1.0.1
FidelityFX-CLI 1.0.2
Command line syntax:
FidelityFX_CLI.exe [Options] <SrcFile1> <DstFile1> <SrcFile2> <DstFile2> ...
Expand Down

0 comments on commit a2b2040

Please sign in to comment.