From 6282280f8d8fb7ccf9e513f95f86b0cdcce11866 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Tue, 8 Jan 2019 21:01:57 +0100 Subject: [PATCH] [util] Enable raw SSBOs for FIFA 19 This game incorrectly binds a typed buffer view when the shader expects a structured buffer. Using raw SSBOs matches Windows behaviour in this case. Fixes #642. --- src/util/config/config.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 3bb08820..2224e06c 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -67,6 +67,14 @@ namespace dxvk { { "anno2205.exe", {{ { "dxvk.enableStateCache", "False" }, }} }, + /* Fifa '19 */ + { "FIFA19.exe", {{ + { "dxvk.useRawSsbo", "True" }, + }} }, + /* Fifa '19 Demo */ + { "FIFA19_demo.exe", {{ + { "dxvk.useRawSsbo", "True" }, + }} }, }};