[Fix] (MG_Backend/DirectVulkan, trace-replay): gate R11G11B10F fallback

This commit is contained in:
2026-07-03 13:00:01 +08:00
parent 45f1a13cc3
commit 79aa381722
3 changed files with 34 additions and 1 deletions
+5 -1
View File
@@ -445,7 +445,11 @@ jobs:
- name: Retrace and validate
working-directory: build-retrace/tools/trace_replay
run: ctest -V --no-tests=error -R '^MobileGLTraceReplay\.${{ matrix.case }}\.${{ matrix.backend }}$'
run: |
if [ '${{ matrix.backend }}' = 'DirectVulkan' ]; then
export MOBILEGL_VULKAN_R11G11B10F_FALLBACK=1
fi
ctest -V --no-tests=error -R '^MobileGLTraceReplay\.${{ matrix.case }}\.${{ matrix.backend }}$'
- name: Upload actual image
if: always()