[dxgi] Remove dxgi.fakeDx10Support option

No longer needed because we have actual Dx10 support now.
This commit is contained in:
Philip Rebohle 2018-08-17 12:33:53 +02:00
parent e6a12dc4e7
commit 7fa6dddc9e
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
3 changed files with 0 additions and 34 deletions

View File

@ -29,7 +29,6 @@ namespace dxvk {
DxgiOptions::DxgiOptions(const Config& config) {
this->deferSurfaceCreation = config.getOption<bool> ("dxgi.deferSurfaceCreation", false);
this->fakeDx10Support = config.getOption<bool> ("dxgi.fakeDx10Support", false);
this->maxFrameLatency = config.getOption<int32_t> ("dxgi.maxFrameLatency", 0);
this->customVendorId = parsePciId(config.getOption<std::string>("dxgi.customVendorId"));
this->customDeviceId = parsePciId(config.getOption<std::string>("dxgi.customDeviceId"));

View File

@ -20,11 +20,6 @@ namespace dxvk {
/// for a single window that may interfere with each other.
bool deferSurfaceCreation;
/// Report to the app that Dx10 interfaces are supported,
/// even if they are not actually supported. Some apps
/// refuse to start without it, some don't work with it.
bool fakeDx10Support;
/// Override maximum frame latency if the app specifies
/// a higher value. May help with frame timing issues.
int32_t maxFrameLatency;

View File

@ -31,10 +31,6 @@ namespace dxvk {
{ "Frostpunk.exe", {{
{ "dxgi.deferSurfaceCreation", "True" },
}} },
/* Just Cause 2 (Dx10) */
{ "JustCause2.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* Mafia 3 */
{ "mafia3.exe", {{
{ "d3d11.fakeStreamOutSupport", "True" },
@ -43,30 +39,6 @@ namespace dxvk {
{ "Overwatch.exe", {{
{ "d3d11.fakeStreamOutSupport", "True" },
}} },
/* Sleeping Dogs */
{ "HKShip.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* Sleeping Dogs: Definitive Edition */
{ "SDHDShip.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* Stalker: Call of Pripyat */
{ "Stalker-COP.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* World of Warcraft */
{ "Wow.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* World of Warcraft Beta */
{ "WowB.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
/* World of Warcraft Test Branch */
{ "WowT.exe", {{
{ "dxgi.fakeDx10Support", "True" },
}} },
}};