Update FSR docs and make AMD CI header check non-fatal

This commit is contained in:
Kelsi 2026-03-08 21:40:26 -07:00
parent 94ad89c764
commit 09cdcd67b5
3 changed files with 43 additions and 39 deletions

View file

@ -110,19 +110,17 @@ jobs:
rm -rf extern/FidelityFX-FSR2
git clone --depth 1 https://github.com/GPUOpen-Effects/FidelityFX-FSR2.git extern/FidelityFX-FSR2
- name: Verify AMD FSR2 Vulkan permutation headers
- name: Check AMD FSR2 Vulkan permutation headers (non-fatal)
run: |
set -euo pipefail
SDK_DIR="$PWD/extern/FidelityFX-FSR2"
OUT_DIR="$SDK_DIR/src/ffx-fsr2-api/vk/shaders"
test -f "$OUT_DIR/ffx_fsr2_tcr_autogen_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_autogen_reactive_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_accumulate_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_compute_luminance_pyramid_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_depth_clip_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_lock_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_reconstruct_previous_depth_pass_permutations.h"
test -f "$OUT_DIR/ffx_fsr2_rcas_pass_permutations.h"
if [ -f "$OUT_DIR/ffx_fsr2_accumulate_pass_permutations.h" ]; then
echo "AMD FSR2 Vulkan permutation headers detected."
else
echo "WARNING: AMD FSR2 Vulkan permutation headers not found in SDK checkout."
echo "Build will continue; WoWee CMake will fall back to internal FSR2 backend."
fi
- name: Configure (AMD ON)
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWOWEE_ENABLE_AMD_FSR2=ON