mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-12 04:54:17 +01:00
[dxgi] Remove dxgi.fakeDx10Support option
No longer needed because we have actual Dx10 support now.
This commit is contained in:
parent
e6a12dc4e7
commit
7fa6dddc9e
@ -29,7 +29,6 @@ namespace dxvk {
|
|||||||
|
|
||||||
DxgiOptions::DxgiOptions(const Config& config) {
|
DxgiOptions::DxgiOptions(const Config& config) {
|
||||||
this->deferSurfaceCreation = config.getOption<bool> ("dxgi.deferSurfaceCreation", false);
|
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->maxFrameLatency = config.getOption<int32_t> ("dxgi.maxFrameLatency", 0);
|
||||||
this->customVendorId = parsePciId(config.getOption<std::string>("dxgi.customVendorId"));
|
this->customVendorId = parsePciId(config.getOption<std::string>("dxgi.customVendorId"));
|
||||||
this->customDeviceId = parsePciId(config.getOption<std::string>("dxgi.customDeviceId"));
|
this->customDeviceId = parsePciId(config.getOption<std::string>("dxgi.customDeviceId"));
|
||||||
|
@ -20,11 +20,6 @@ namespace dxvk {
|
|||||||
/// for a single window that may interfere with each other.
|
/// for a single window that may interfere with each other.
|
||||||
bool deferSurfaceCreation;
|
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
|
/// Override maximum frame latency if the app specifies
|
||||||
/// a higher value. May help with frame timing issues.
|
/// a higher value. May help with frame timing issues.
|
||||||
int32_t maxFrameLatency;
|
int32_t maxFrameLatency;
|
||||||
|
@ -31,10 +31,6 @@ namespace dxvk {
|
|||||||
{ "Frostpunk.exe", {{
|
{ "Frostpunk.exe", {{
|
||||||
{ "dxgi.deferSurfaceCreation", "True" },
|
{ "dxgi.deferSurfaceCreation", "True" },
|
||||||
}} },
|
}} },
|
||||||
/* Just Cause 2 (Dx10) */
|
|
||||||
{ "JustCause2.exe", {{
|
|
||||||
{ "dxgi.fakeDx10Support", "True" },
|
|
||||||
}} },
|
|
||||||
/* Mafia 3 */
|
/* Mafia 3 */
|
||||||
{ "mafia3.exe", {{
|
{ "mafia3.exe", {{
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
{ "d3d11.fakeStreamOutSupport", "True" },
|
||||||
@ -43,30 +39,6 @@ namespace dxvk {
|
|||||||
{ "Overwatch.exe", {{
|
{ "Overwatch.exe", {{
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
{ "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" },
|
|
||||||
}} },
|
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user