summaryrefslogtreecommitdiffstats
path: root/core/modules/vmware/data/opt/openslx/bin/vmplayer
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/vmware/data/opt/openslx/bin/vmplayer')
-rwxr-xr-xcore/modules/vmware/data/opt/openslx/bin/vmplayer17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/modules/vmware/data/opt/openslx/bin/vmplayer b/core/modules/vmware/data/opt/openslx/bin/vmplayer
new file mode 100755
index 00000000..cfb91a0a
--- /dev/null
+++ b/core/modules/vmware/data/opt/openslx/bin/vmplayer
@@ -0,0 +1,17 @@
+#!/bin/ash
+# radically simplified version of the original script vmplayer by VMware Inc.
+PREFIX=/usr/lib/vmware # depends on the vmware location
+
+# HACK: Let the OpenGL driver report s3tc capability even if not present, so 3D will be enabled
+export force_s3tc_enable=true
+
+PROG=$(basename $0)
+
+exec "$PREFIX/lib/wrapper-gtk24.sh" \
+ "$PREFIX/lib" \
+ "$PREFIX/bin/$PROG" \
+ "$PREFIX/libconf" "$@"
+
+
+
+