summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorCallum Prentice <callum@gmail.com>2021-02-24 15:20:39 -0800
committerCallum Prentice <callum@gmail.com>2021-02-24 15:20:39 -0800
commit2aea7cfc25d42e3d87db4fb759baa4419ec23dca (patch)
treef40451af8bef3e05fe31f284f7352e008a668bf7 /indra/newview/viewer_manifest.py
parent329d4900366605116cef03d92be4e64acae6f785 (diff)
Pull in new version of Dullahan with support for setting the host process path, tweak viewer manifest so it copies the SwiftShader folder (required but may be a Chromium bug) and improve background color matching
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-xindra/newview/viewer_manifest.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 6d231040f7..3ce3aae469 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -611,6 +611,12 @@ class WindowsManifest(ViewerManifest):
self.path("msvcp140.dll")
self.path("vcruntime140.dll")
+ # as of CEF 88, this (apparently software rendering support)
+ # folder is required - likely a Chromium bug - but including
+ # for now until the root cause is found - it's tiny
+ with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')):
+ self.path("swiftshader/")
+
# CEF files common to all configurations
with self.prefix(src=os.path.join(pkgdir, 'resources')):
self.path("cef.pak")