Remove Multisampling option, add StrictDrawOrdering

This commit is contained in:
Mathieu Comandon 2015-03-05 13:46:55 +01:00
parent b7118d7239
commit bf4e6f00c2

View file

@ -254,9 +254,9 @@ class wine(Runner):
"RenderTargetLockMode": r"%s\Direct3D" % reg_prefix,
"Audio": r"%s\Drivers" % reg_prefix,
"MouseWarpOverride": r"%s\DirectInput" % reg_prefix,
"Multisampling": r"%s\Direct3D" % reg_prefix,
"OffscreenRenderingMode": r"%s\Direct3D" % reg_prefix,
"DirectDrawRenderer": r"%s\Direct3D" % reg_prefix,
"StrictDrawOrdering": r"%s\Direct3D" % reg_prefix,
"Version": r"%s" % reg_prefix,
"Desktop": r"%s\Explorer" % reg_prefix
}
@ -337,20 +337,6 @@ class wine(Runner):
"<b>Force</b>: always warp the pointer"
)
},
{
'option': 'Multisampling',
'label': 'Multisampling',
'type': 'choice',
'choices': [
('Enabled', 'enabled'),
('Disabled', 'disabled')
],
'help': ("Set to Disabled to prevent applications from "
"seeing Wine's multisampling support. "
"This is another Wine legacy option that will most "
"likely disappear at some point. There should be "
"no reason to set this.")
},
{
'option': 'OffscreenRenderingMode',
'label': 'Offscreen Rendering Mode',
@ -362,6 +348,18 @@ class wine(Runner):
"<b>Backbuffer</b>: Render offscreen render targets "
"in the backbuffer.\n")
},
{
'option': 'StrictDrawOrdering',
'label': "Strict Draw Ordering",
'type': 'choice',
'choices': [
('Enabled', 'enabled'),
('Disabled', 'disabled')
],
'help': ("This option ensures any pending drawing operations "
"are submitted to the driver, but at a significant "
"performance cost.")
},
{
'option': 'RenderTargetLockMode',
'label': 'Render Target Lock Mode',