diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-01 17:02:19 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-01 17:02:19 +0000 |
commit | 63a7e496ee01a1adf804815a47ba647709fc7c4e (patch) | |
tree | 8e260adc9709b50c5ea9085341320b3010d199f3 /officecfg | |
parent | 2862189912cad10e6ae667b3345de2f113753c07 (diff) |
INTEGRATION: CWS dxliberate01 (1.1.2); FILE ADDED
2007/07/23 10:21:25 thb 1.1.2.1: #i48454# Added config for directxcanvas, which needs device blacklist and hints for maximal texture sizes
Diffstat (limited to 'officecfg')
-rwxr-xr-x | officecfg/registry/data/org/openoffice/Office/Canvas.xcu | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/Canvas.xcu b/officecfg/registry/data/org/openoffice/Office/Canvas.xcu new file mode 100755 index 000000000000..c84489055164 --- /dev/null +++ b/officecfg/registry/data/org/openoffice/Office/Canvas.xcu @@ -0,0 +1,23 @@ +<?xml version='1.0' encoding='UTF-8'?> + +<oor:component-data oor:name="Canvas" oor:package="org.openoffice.Office" xmlns:install="http://openoffice.org/2004/installation" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <node oor:name="DXCanvas"> + <prop oor:name="MaxTextureSize" oor:type="xs:int"> + <!-- Nvidia GeForce Go 6800 crashes with a bluescreen if we take the maximum texture size, which would be twice as large --> + <!-- NVidia Quadro NVS 285 simply refuses rendering (failing silently) if we take the maximum texture size --> + <value>2048</value> + </prop> + <prop oor:name="BlacklistCurrentDevice" oor:type="xs:boolean"> + <value>false</value> + </prop> + <prop oor:name="DeviceBlacklist" oor:type="oor:int-list"> + <value> + <!-- Matrox G550 - blank display on 2nd head --> + 4139 9511 260313131 1 5 13 1 1320 + <!-- Matrox G400 - random crashes --> + 4139 1317 54005803 4 5 12 1 1200 + </value> + </prop> + </node> +</oor:component-data> + |